Skip to content

Commit

Permalink
Fix another warning in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
anibali committed Jan 20, 2023
1 parent 29b9072 commit a1b08ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
- uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Build source distribution
Expand All @@ -38,8 +37,7 @@ jobs:
with:
name: sdist-${{ github.sha }}
path: dist/
- name: Set up Python 3.7
uses: actions/setup-python@v4
- uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install the package
Expand All @@ -64,6 +62,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.12.0
- name: Build wheels
Expand Down

0 comments on commit a1b08ba

Please sign in to comment.