Updated map ban for bo1 matches, added select captain feature #71
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: "Tests" | |
on: ["push"] | |
jobs: | |
test: | |
runs-on: "${{matrix.os}}-latest" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu"] | |
python-version: ["3.11", "3.12"] | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Install Poetry" | |
run: "pipx install poetry" | |
- name: "Set up Python ${{matrix.python-version}}" | |
uses: "actions/setup-python@v5" | |
with: | |
python-version: "${{matrix.python-version}}" | |
cache: "poetry" | |
- name: "Install the project" | |
run: "poetry install" | |
- name: "Run tests" | |
run: "cd src && poetry run pytest -v ." |