forked from cclib/cclib
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 679 Bytes
/
Copy pathci.yml
File metadata and controls
32 lines (29 loc) · 679 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
---
name: ci
# yamllint disable-line rule:truthy
on:
push:
pull_request:
concurrency:
group: ci-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
cancel-in-progress: true
jobs:
prechecks:
uses: ./.github/workflows/pre-commit.yml
nix:
uses: ./.github/workflows/nix.yml
unit-tests:
needs: [prechecks]
uses: ./.github/workflows/test_and_package.yml
docs:
uses: ./.github/workflows/docs.yml
secrets: inherit
publish:
needs: [nix, unit-tests, docs]
uses: ./.github/workflows/publish.yml
all:
needs: [unit-tests, publish]
runs-on: ubuntu-24.04
steps:
- name: Success
run: "true"