Skip to content

Commit

Permalink
Move REUSE Compliance into a separate action (KhronosGroup#2190)
Browse files Browse the repository at this point in the history
  • Loading branch information
lexaknyazev authored Jul 27, 2022
1 parent 25e46dd commit b6e0fcc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# REUSE license checker
- name: license-check
run: |
reuse lint
# Build spec targets
- name: spec-generate
run: |
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2022 The Khronos Group Inc.
#
# SPDX-License-Identifier: Apache-2.0

name: REUSE Compliance

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: REUSE Compliance Check
uses: fsfe/[email protected]

0 comments on commit b6e0fcc

Please sign in to comment.