-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (40 loc) · 849 Bytes
/
ci.yml
File metadata and controls
44 lines (40 loc) · 849 Bytes
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
name: 🦀 Continuous Integration
on:
push:
branches: ["main"]
paths:
- "**"
- "!docs/**"
- "!mkdocs.yml"
- "!**/*.md"
- "!LICENSE-*"
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
rust_checks:
name: 📎 Clippy
permissions:
contents: read
security-events: write
actions: read
uses: ./.github/workflows/clippy.yml
build:
name: 🏗️ Build and Test
uses: ./.github/workflows/build.yml
coverage:
name: 🦺 Coverage
permissions:
contents: read
pull-requests: write
actions: read
needs: build
uses: ./.github/workflows/tarpaulin.yml
conformance:
name: 🦆 CWL Conformance Tests
permissions:
contents: read
actions: read
needs: build
uses: ./.github/workflows/cwl.yml