Skip to content

Commit

Permalink
ci: Bump GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaty committed Mar 28, 2024
1 parent c277609 commit 6517863
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,33 @@ jobs:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip freeze
- name: Test with pytest
- name: Run tests
run: |
make test
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip freeze
- name: Lint with flake8
- name: Run quality checks
run: |
make quality

0 comments on commit 6517863

Please sign in to comment.