From 579e9448b495c5cb2b0011ead125e828462bfc55 Mon Sep 17 00:00:00 2001 From: ergrelet Date: Sun, 28 Jul 2024 16:25:50 +0200 Subject: [PATCH] Add a build job to the CI --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e3c83ee --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build + +on: [push] + +jobs: + build_windows: + runs-on: windows-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Install stable toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + override: true + + - name: Build + run: cargo build --release