From 1a1c5d24f64424fa27ae90b7c5e2bdb5db84d51e Mon Sep 17 00:00:00 2001 From: Troy Date: Mon, 10 Feb 2025 14:31:12 +0000 Subject: [PATCH] test build in pull request --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..eff78cf --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Test + +on: + pull_request: + workflow_call: + +permissions: + contents: read + +env: + CARGO_TERM_COLOR: always + +jobs: + run-tests: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Build + run: cargo build