Skip to content

Commit b6ed7b2

Browse files
committed
ci: add GitHub Actions to test current branch
1 parent 7c7a68f commit b6ed7b2

File tree

4 files changed

+14633
-5
lines changed

4 files changed

+14633
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: needs.check_source.outputs.run_tests == 'true'
3636
# Use a specific image version for reproducible builds
3737
container:
38-
image: opensuse/leap:15.5
38+
image: opensuse/leap:15.6
3939
strategy:
4040
fail-fast: false
4141
matrix:

.github/workflows/doc.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ jobs:
1818
name: 'Docs'
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: 'Install Dependencies'
23-
run: sudo ./.github/workflows/posix-deps-zypp.sh && sudo apt-get install wamerican
23+
run: sudo ./.github/workflows/posix-deps-zypp.sh
24+
# sudo apt-get install wamerican
2425
- name: 'Configure CPython'
2526
run: ./configure --with-pydebug
2627
- name: 'Build CPython'
@@ -30,7 +31,7 @@ jobs:
3031
- name: 'Build documentation'
3132
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" suspicious html
3233
- name: 'Upload'
33-
uses: actions/upload-artifact@v1
34+
uses: actions/upload-artifact@v4
3435
with:
3536
name: doc-html
3637
path: Doc/build/html

0 commit comments

Comments
 (0)