Merge pull request #465 from Whist-Team/dependabot/pip/pylint-3.3.1 #578
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python CI | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
python-version: [ '3.10', '3.11', '3.12' ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: Whist-Team/actions/setup-poetry@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 'unit test with pytest' | |
run: 'poetry run python -m pytest' |