Skip to content

Commit 4939bd4

Browse files
authored
Merge pull request #19 from flashbots/peg/add-maa
Add support for Microsoft Azure Attestation (MAA)
2 parents 71d1442 + 71fadee commit 4939bd4

File tree

17 files changed

+1584
-528
lines changed

17 files changed

+1584
-528
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ jobs:
1010
- name: Checkout code
1111
uses: actions/checkout@v3
1212

13+
- name: Install system dependencies
14+
run: |
15+
sudo apt-get update
16+
sudo apt-get install -y pkg-config libtss2-dev
17+
1318
- name: Set up Rust
1419
uses: dtolnay/rust-toolchain@stable
1520
with:
@@ -28,7 +33,7 @@ jobs:
2833
${{ runner.os }}-cargo-
2934
3035
- name: Run cargo clippy
31-
run: cargo clippy -- -D warnings
36+
run: cargo clippy --workspace -- -D warnings
3237

3338
- name: Run cargo test
34-
run: cargo test
39+
run: cargo test --workspace --all-targets

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/target
22
remote-cert.crt
33
/quotes
4-
4+
ca.crt

0 commit comments

Comments
 (0)