Skip to content

Commit

Permalink
Merge pull request #8 from eseiler/infra/combined_ci
Browse files Browse the repository at this point in the history
[INFRA] Require license check before CI
  • Loading branch information
eseiler authored Feb 26, 2024
2 parents c0a8946 + 23bd3a2 commit c3557d7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 23 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,22 @@ defaults:
shell: bash -Eeuo pipefail {0}

jobs:
license_check:
name: "REUSE Compliance"
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4

- name: REUSE Compliance Check
uses: fsfe/reuse-action@v2

build:
name: "Scavenger Hunt"
needs: [license_check]
runs-on: ubuntu-22.04
timeout-minutes: 120
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/ci_license_check.yml

This file was deleted.

0 comments on commit c3557d7

Please sign in to comment.