Skip to content

more misc

more misc #4

Workflow file for this run

on: [push]
jobs:
debug:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update && sudo apt-get install -y git cargo
- uses: actions/checkout@v3
- run: cargo run
- run: cargo test
release:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update && sudo apt-get install -y git cargo
- uses: actions/checkout@v3
- run: cargo --release run
- run: cargo --release test