Skip to content

Merge pull request #25 from themadprofessor/local_and_version #71

Merge pull request #25 from themadprofessor/local_and_version

Merge pull request #25 from themadprofessor/local_and_version #71

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
cargo_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update local toolchain
run: |
rustup update
rustup install stable
- name: Test
run: |
cargo check
cargo test --all
- name: Build
run: |
cargo build --release