From f3d76c93367ae5b535e6a1c066c1d3267fb25bc3 Mon Sep 17 00:00:00 2001 From: KD Date: Sat, 1 Feb 2025 21:50:18 -0500 Subject: [PATCH] Create rust-ubuntu-latest.yml --- .github/workflows/rust-ubuntu-latest.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust-ubuntu-latest.yml diff --git a/.github/workflows/rust-ubuntu-latest.yml b/.github/workflows/rust-ubuntu-latest.yml new file mode 100644 index 0000000..000bb2c --- /dev/null +++ b/.github/workflows/rust-ubuntu-latest.yml @@ -0,0 +1,22 @@ +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@v4 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose