-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (38 loc) · 1023 Bytes
/
CI-ci-remote.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-build-test-lint-fmt-deps
run-name: "Workflow performing CI steps: build, testing, check format, check linting, check headers and check dependencies"
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
workflow_dispatch:
env:
RUST_BACKTRACE: 1
jobs:
build-test-check:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Install cargo-make
uses: actions-rs/cargo@v1
with:
command: install
args: --debug cargo-make
- name: Run CI full (stable)
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: make
args: ci-remote
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: Run CI check-deps only (nightly)
uses: actions-rs/cargo@v1
with:
toolchain: nightly
command: make
args: udeps