From 3ba4b3d877550588dd37e60846debe117ee0a088 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Tue, 6 Aug 2024 06:43:21 +0200 Subject: [PATCH] Add action file --- .forgejo/workflows/pico_master.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .forgejo/workflows/pico_master.yaml 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 +