From cdc26c143ddc76008728662fa5b55b1daeb22d3a Mon Sep 17 00:00:00 2001 From: "Matheus T. dos Santos" Date: Fri, 30 Aug 2024 20:53:00 -0300 Subject: [PATCH] ci: remove nightly from CI Signed-off-by: Matheus T. dos Santos --- .github/workflows/build.yml | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59412fc..3a41d1f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,45 +13,27 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - components: clippy - override: true - - name: Install libudev-sys run: | sudo apt-get install -y libudev-dev - - name: Build run: | - cargo +nightly build --release --verbose + cargo build --release --verbose build-windows: name: Check on Windows runs-on: windows-latest steps: - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - components: clippy - override: true - name: Build run: | - cargo +nightly build --release --verbose + cargo build --release --verbose build-macos: name: Check on MacOS runs-on: macos-latest steps: - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - components: clippy - override: true - - name: Build run: | - cargo +nightly build --release --verbose + cargo build --release --verbose