diff --git a/.forgejo/workflows/pico_master.yaml b/.forgejo/workflows/pico_master.yaml new file mode 100644 index 0000000..e567eaf --- /dev/null +++ b/.forgejo/workflows/pico_master.yaml @@ -0,0 +1,21 @@ +name: Check Build +run_name: Check Build + +on: + push: + +jobs: + Test build: + steps: + - uses: https://github.com/actions/checkout@main + + - uses: https://github.com/dtolnay/rust-toolchain@stable + + - name: Build - debug + run: | + cargo build + + - name: Build - release + run: | + cargo build --release +