summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pull_request.yml36
1 files changed, 36 insertions, 0 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
new file mode 100644
index 0000000..40a7490
--- /dev/null
+++ b/.github/workflows/pull_request.yml
@@ -0,0 +1,36 @@
1name: build
2
3on:
4 pull_request:
5 branches: [ "main" ]
6 workflow_dispatch:
7
8env:
9 SCCACHE_GHA_ENABLED: "true"
10 RUSTC_WRAPPER: "sccache"
11 SQLX_OFFLINE: "true"
12 CARGO_TERM_COLOR: always
13
14jobs:
15 build:
16 runs-on: ubuntu-latest
17 steps:
18 - name: Run sccache-cache
19 uses: mozilla-actions/[email protected]
20
21 - uses: actions/checkout@v4
22 - uses: actions-rs/toolchain@v1
23 with:
24 toolchain: stable
25 components: rustfmt, clippy
26 override: true
27
28 - name: Run cargo check
29 uses: actions-rs/cargo@v1
30 with:
31 command: check
32
33 - name: Run Clippy
34 uses: actions-rs/cargo@v1
35 with:
36 command: clippy