diff --git a/.github/workflows/on_pr_targeting_master.yaml b/.github/workflows/on_pr_targeting_master.yaml new file mode 100644 index 0000000..b7c2ac2 --- /dev/null +++ b/.github/workflows/on_pr_targeting_master.yaml @@ -0,0 +1,19 @@ +name: On PR Targeting Master + +on: + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose