-
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (47 loc) · 1.17 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
name: Rust
on:
push:
branches: [ "main", "develop" ]
paths-ignore:
- "**.md"
- "Makefile"
- ".dockerignore"
- ".gitignore"
pull_request:
branches: [ "main" ]
paths-ignore:
- "**.md"
- "Makefile"
- ".dockerignore"
- ".gitignore"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache
uses: Swatinem/rust-cache@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --all-targets --all-features --verbose
examples:
name: Examples
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install toolchain
run: rustup install stable
- name: Add problem matchers
run: echo "::add-matcher::.github/matchers/rust.json"
- name: Cache
uses: Swatinem/rust-cache@v1
- name: 'Check example 1'
run: cargo check -p l02_operator
- name: 'Check example 2'
run: cargo check -p l03_variable
- name: 'Check example 3'
run: cargo check -p l05_control_formula