add sound support #41
Workflow file for this run
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: "Ohio Moment Detector 9000" | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: "pip" | |
- name: "Installing dependencies" | |
run: "pip install -r requirements.txt" | |
- name: "Building dev wheel..." | |
run: | | |
mkdir dist | |
cd engine | |
maturin build -o ../dist/ | |
pip install ../dist/engine* | |
- name: "Running Ohio Detector 9000" | |
uses: pre-commit-ci/lite-action@v1.0.2 | |
if: always() |