Skip to content

Commit 1456a66

Browse files
Merge pull request #1 from paulhowardarm/phImplementDiscovery
Initial support for CoSERV discovery document Signed-off-by: Paul Howard <[email protected]>
2 parents 3cb94ff + eb2c11d commit 1456a66

File tree

7 files changed

+1447
-0
lines changed

7 files changed

+1447
-0
lines changed

.github/workflows/ci.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v5
19+
- name: Formatting checks
20+
run: cargo fmt --all -- --check
21+
- name: Clippy checks
22+
run: cargo clippy --all-targets -- -D clippy::all -D clippy::cargo -A clippy::multiple-crate-versions
23+
- name: Build
24+
run: cargo build --verbose
25+
- name: Run tests
26+
run: cargo test --verbose
27+
28+
# Recommended pipeline if using advisories, to avoid sudden breakages
29+
# From: https://github.com/EmbarkStudios/cargo-deny-action
30+
cargo-deny:
31+
runs-on: ubuntu-latest
32+
strategy:
33+
matrix:
34+
checks:
35+
- advisories
36+
- bans licenses sources
37+
38+
# Prevent sudden announcement of a new advisory from failing ci:
39+
continue-on-error: ${{ matrix.checks == 'advisories' }}
40+
41+
steps:
42+
- uses: actions/checkout@v4
43+
- uses: EmbarkStudios/cargo-deny-action@v1
44+
with:
45+
command: check ${{ matrix.checks }}

Cargo.lock

Lines changed: 314 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)