Skip to content

Commit

Permalink
Update lint #61
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludee committed Nov 27, 2024
1 parent 457089c commit 8285769
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/automated-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
# fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest]
python-version:
- '3.10'
python-version: ['3.10']
tox-envs: [lint, test]
isMerge:
- ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
Expand All @@ -28,17 +27,17 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install tox
pip install tox tox-gh-actions
- name: unit tests
run: tox -e ${{ matrix.tox-envs }}

0 comments on commit 8285769

Please sign in to comment.