Skip to content

Commit

Permalink
ci(github): upgrade actions/setup-python to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Oct 1, 2023
1 parent baf1eae commit 513fadb
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.10

- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
# - name: Install Poetry
# run: curl -sSL https://install.python-poetry.org | python3 -

- name: Install dependencies
run: |
poetry install
run: poetry install

- name: Run tests
run: |
make test
run: make test

0 comments on commit 513fadb

Please sign in to comment.