Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
virtuald committed May 16, 2024
1 parent 2c7891a commit 1b37e5a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: psf/black@stable

check-doc:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Sphinx
Expand All @@ -33,21 +33,21 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-20.04]
python_version: [3.5, 3.6, 3.7, 3.8]
architecture: [x86, x64]
python_version: [3.8]
architecture: [x64]
exclude:
- os: macos-latest
architecture: x86
- os: ubuntu-20.04
architecture: x86

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
architecture: ${{ matrix.architecture }}
Expand All @@ -72,12 +72,12 @@ jobs:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: 3.8
- run: pip --disable-pip-version-check install wheel
Expand Down

0 comments on commit 1b37e5a

Please sign in to comment.