From 5f278d871d70469283bba4dc51abdc3551598d53 Mon Sep 17 00:00:00 2001 From: Anders Musikka Date: Fri, 4 Aug 2023 15:31:33 +0200 Subject: [PATCH] Create rust.yml --- .github/workflows/rust.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..8159335 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,30 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build (nightly) + run: cargo +nightly build --workspace --verbose + - name: Run tests (nightly) + run: cargo +nightly test --workspace --verbose + - name: Build min-deps (nightly) + run: cargo +nightly build -p savefile-min-build --verbose + - name: Build (stable) + run: cargo +stable build --workspace --verbose + - name: Run tests (stable) + run: cargo +stable test --workspace --verbose + - name: Build min-deps (stable) + run: cargo +stable build -p savefile-min-build --verbose