-
Notifications
You must be signed in to change notification settings - Fork 38
42 lines (40 loc) · 1.1 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
tags:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ !contains(github.event.pull_request.labels.*.name, 'test-flaky-ci') && github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
- uses: denoland/setup-deno@v1
with:
deno-version: ~1.x
- uses: actions/setup-node@v2
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Format
run: |
cargo fmt --all -- --check
deno fmt --check
- name: Lint
run: |
cargo clippy --all-targets --all-features --release
deno lint
- name: Build
run: cargo build --all-targets --all-features --release
- name: Test (Rust)
run: cargo test --all-targets --all-features --release
- name: Test (Deno)
run: deno task test