-
Notifications
You must be signed in to change notification settings - Fork 2
59 lines (59 loc) · 1.48 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
name: 'Continuous Integration'
on:
push:
branches:
- 'main'
jobs:
test:
name: 'Test Suite'
runs-on: 'ubuntu-latest'
strategy:
matrix:
# Test against current stable and the MSRV
toolchain-version:
- 'stable'
- '1.70.0'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v4'
with:
fetch-depth: 1
- name: 'Target Cache'
uses: 'actions/cache@v3'
env:
cache-name: 'target-cache'
with:
path: 'target'
key: "${{ matrix.toolchain-version }}-${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('Cargo.lock') }}"
- name: 'Install Toolchain'
uses: 'dtolnay/rust-toolchain@v1'
with:
toolchain: '${{ matrix.toolchain-version }}'
- name: 'Run Default Feature Tests'
run: |
cargo test
- name: 'Run Cloudwatch Feature Test'
run: |
cargo test \
--no-default-features \
--features=cloudwatch
- name: 'Run S3 Feature Test'
run: |
cargo test \
--no-default-features \
--features=s3
mandoc:
name: 'Lint Man Page'
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v4'
with:
fetch-depth: 1
- name: 'Install mandoc'
run: |
sudo apt install mandoc
- name: 'Lint man page'
run: |
make manlint