We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a887483 commit c56635dCopy full SHA for c56635d
.github/workflows/main.yml
@@ -10,12 +10,14 @@ on:
10
jobs:
11
build:
12
name: "Build mod_wsgi packages"
13
- runs-on: "ubuntu-22.04"
+ runs-on: "ubuntu-20.04"
14
steps:
15
- uses: "actions/checkout@v2"
16
- uses: "actions/setup-python@v2"
17
with:
18
python-version: "3.9"
19
+ - name: "Update package details"
20
+ run: sudo apt --fix-missing update
21
- name: "Install Apache package"
22
run: sudo apt install -y apache2-dev
23
- name: "Build mod_wsgi packages"
@@ -28,7 +30,7 @@ jobs:
28
30
29
31
tests:
32
name: "Test mod_wsgi package (Python ${{ matrix.python-version }})"
33
34
needs:
35
- build
36
strategy:
0 commit comments