-
Notifications
You must be signed in to change notification settings - Fork 50
69 lines (54 loc) · 1.54 KB
/
rust.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: CI
on:
push:
branches:
- main
pull_request:
env:
# https://doc.rust-lang.org/cargo/reference/profiles.html#release
RUSTFLAGS: -Coverflow-checks=y -Cdebug-assertions=y
# https://doc.rust-lang.org/cargo/reference/profiles.html#incremental
CARGO_INCREMENTAL: 1
# https://nexte.st/book/pre-built-binaries.html#using-nextest-in-github-actions
CARGO_TERM_COLOR: always
jobs:
run_checks:
runs-on: ubuntu-latest
name: Run some basic checks and tests
steps:
#
# Setup
#
- name: Checkout PR
uses: actions/checkout@v2
- name: Set up cargo/rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
# https://github.com/Swatinem/rust-cache
- name: Cache Rust stuff
uses: Swatinem/rust-cache@v1
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
#
# Tests
#
- name: Test with latest nextest release (faster than cargo test)
run: cargo nextest run --all-features --release
#
# Coding guidelines
#
- name: Enforce formatting
run: cargo fmt -- --check
# - name: Lint (clippy)
# uses: actions-rs/cargo@v1
# with:
# command: clippy
# args: --all-features -- -D warnings
#
# Docker build and run
#
- name: Build Docker image
run: docker build -t snarkjs -f .github/workflows/Dockerfile .
- name: Run Docker container
run: docker run --rm snarkjs