From 26f038451ac6b02a672930fd39de6e63ad8d0012 Mon Sep 17 00:00:00 2001 From: Josh Austin <83935880+joshaustintech@users.noreply.github.com> Date: Tue, 3 Sep 2024 00:03:31 -0500 Subject: [PATCH] Create ubuntu-build.yml --- .github/workflows/ubuntu-build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ubuntu-build.yml diff --git a/.github/workflows/ubuntu-build.yml b/.github/workflows/ubuntu-build.yml new file mode 100644 index 0000000..17563cb --- /dev/null +++ b/.github/workflows/ubuntu-build.yml @@ -0,0 +1,22 @@ +name: Ubuntu + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +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