Skip to content

Commit

Permalink
Merge pull request skonfig#79 from riiengineering/update-actions
Browse files Browse the repository at this point in the history
Update actions
  • Loading branch information
4nd3r authored Oct 18, 2024
2 parents a72688d + c5efb93 commit 9df3614
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
sudo apt-get update
sudo apt-get -y install make python3 python3-sphinx python3-sphinx-rtd-theme
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Information
Expand All @@ -30,7 +30,7 @@ jobs:
make docs
- name: Archive docs
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: |
docs/dist
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
sudo apt-get update
sudo apt-get -y install python3 pycodestyle shellcheck
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Information
Expand Down
19 changes: 9 additions & 10 deletions .github/workflows/test-build-optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,28 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu
- macos
- ubuntu-latest
- macos-13
python-version:
- pypy-3.6
- pypy-3.7
- pypy-3.8
- pypy-3.9
- pypy-3.10
- graalpy-22.3.1
- graalpy-23.1.2
- graalpy-24.1.1
include:
- {os: "macos", python-version: "3.5"}
- {os: "macos", python-version: "3.6"}
exclude:
- {os: "macos", python-version: "pypy-3.6"}
- {os: "macos", python-version: "pypy-3.9"}
runs-on: ${{ matrix.os }}-latest
- {os: "macos-13", python-version: "3.6"}
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Information
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test-build-required.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ jobs:
os:
- ubuntu
- macos
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- {os: "macos", python-version: "3.7"}
runs-on: ${{ matrix.os }}-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
allow-prereleases: true
python-version: ${{ matrix.python-version }}
Expand Down
19 changes: 9 additions & 10 deletions .github/workflows/test-unit-optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,27 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu
- macos
- ubuntu-latest
- macos-13
python-version:
- pypy-3.6
- pypy-3.7
- pypy-3.8
- pypy-3.9
- graalpy-22.3.1
- graalpy-23.1.2
- graalpy-24.1.1
include:
- {os: "macos", python-version: "3.5"}
- {os: "macos", python-version: "3.6"}
exclude:
- {os: "macos", python-version: "pypy-3.6"}
- {os: "macos", python-version: "pypy-3.9"}
runs-on: ${{ matrix.os }}-latest
- {os: "macos-13", python-version: "3.6"}
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Information
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test-unit-required.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ jobs:
os:
- ubuntu
- macos
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- {os: "macos", python-version: "3.7"}
runs-on: ${{ matrix.os }}-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
allow-prereleases: true
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit 9df3614

Please sign in to comment.