add demo workflow
All checks were successful
Build & Test / build-and-test (push) Successful in 53s

This commit is contained in:
Dylan Knutson
2024-06-13 10:25:23 -07:00
parent 0bb8a333e4
commit c5dc0a16bf

View File

@@ -0,0 +1,18 @@
name: Build & Test
run-name: Build & Test
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
run: cargo build
- name: Test
run: cargo test