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:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: '00 01 * * *'
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
build:
- pinned
- stable
- nightly
include:
- build: pinned
os: ubuntu-22.04
rust: 1.66.0
- build: stable
os: ubuntu-22.04
rust: stable
- build: nightly
os: ubuntu-22.04
rust: nightly
steps:
- uses: actions/checkout@v2
- run: cargo clippy
- run: cargo build --verbose
- run: cargo doc --verbose