-
Notifications
You must be signed in to change notification settings - Fork 95
71 lines (62 loc) · 1.86 KB
/
aa_sample_keyprovider.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: attestation-agent coco_keyprovider tests
on:
push:
branches:
- 'main'
paths:
- 'attestation-agent/coco_keyprovider/**'
- '.github/workflows/aa_sample_keyprovider.yml'
pull_request:
paths:
- 'attestation-agent/coco_keyprovider/**'
- '.github/workflows/aa_sample_keyprovider.yml'
create:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
coco_keyprovider_ci:
if: github.event_name != 'push'
name: Check
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
rust:
- stable
steps:
- name: Code checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Rust toolchain (${{ matrix.rust }})
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Install protoc
run: |
sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Rust fmt check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --check --manifest-path attestation-agent/coco_keyprovider/Cargo.toml
- name: Rust clippy check
uses: actions-rs/cargo@v1
with:
command: clippy
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml -- -D warnings
- name: Build and install
uses: actions-rs/cargo@v1
with:
command: build
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml