fix(wrong card playable) (#84) #65
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
permissions: read-all | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Clippy - Rust linter | |
- name: Install Rust toolchain | |
run: rustup toolchain install stable | |
- name: Run Clippy | |
run: rustup component add clippy && cargo clippy -- -D warnings | |
# Install dependencies and run unittests within the virtual environment | |
- name: Setup and run tests in virtual environment | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
pip install ruff | |
ruff check . | |
pip install maturin | |
maturin develop | |
python -m unittest discover -s tests -p '*.py' | |
# Build and test steps for Rust | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose |