File: ci.yml

package info (click to toggle)
cclib 1.8.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,412 kB
  • sloc: python: 23,605; makefile: 75; sh: 31
file content (24 lines) | stat: -rw-r--r-- 474 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
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:
  unit-tests:
    uses: ./.github/workflows/test_and_package.yml
  publish:
    needs: [unit-tests]
    uses: ./.github/workflows/publish.yml
  all:
    needs: [unit-tests, publish]
    runs-on: ubuntu-22.04
    steps:
      - name: Success
        run: "true"