-
Notifications
You must be signed in to change notification settings - Fork 23
39 lines (32 loc) · 943 Bytes
/
ci.yaml
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
name: CI
on:
push:
# Run on the main branch
branches:
- main
# Releases are tags named 'v<version>', and must have the "major.minor.micro", for example: "0.1.0".
# Release candidates are tagged as `v<version>-rc<num>`, for example: "0.1.0-rc1".
tags:
- "v*"
# Also on PRs, just be careful not to publish anything
pull_request:
jobs:
library-ci:
runs-on: ubuntu-latest
strategy:
matrix:
subcmd: [build, clippy, test]
steps:
- uses: actions/checkout@v4
- name: Run `cargo ${{ matrix.subcmd }}` for library
run: cargo ${{ matrix.subcmd }}
example-ci:
runs-on: ubuntu-latest
strategy:
matrix:
example: [embassy, blocking, tokio, nrf52]
steps:
- uses: actions/checkout@v4
- name: Run `cargo build` for example ${{ matrix.example }}
working-directory: examples/${{ matrix.example }}
run: cargo build