diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdb650b..289cd6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,9 @@ name: Cargo Build & Test on: push: + branches: [main] pull_request: + workflow_dispatch: env: CARGO_TERM_COLOR: always @@ -15,8 +17,6 @@ jobs: matrix: toolchain: - stable - - beta - # - nightly steps: - uses: actions/checkout@v3 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} @@ -34,6 +34,5 @@ jobs: - name: Run Clippy run: cargo clippy - - run: cargo build --verbose - - run: cargo test --verbose \ No newline at end of file + - run: cargo test --verbose