Skip to content

customizable timer music #40

customizable timer music

customizable timer music #40

Workflow file for this run

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()