Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
Start with just running spdx-ensure
  • Loading branch information
mchack-work committed Aug 31, 2023
1 parent ef310e8 commit 787f62e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: ci

on:
push:
branches:
- 'main'
pull_request: {}
# allow manual runs:
workflow_dispatch: {}

jobs:
ci:
runs-on: ubuntu-latest
container:
image: ghcr.io/tillitis/tkey-builder:2
steps:
- name: checkout
uses: actions/checkout@v3
with:
# fetch-depth: 0
persist-credentials: false

- name: fix
# https://github.com/actions/runner-images/issues/6775
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: check for SPDX tags
run: ./tools/spdx-ensure

0 comments on commit 787f62e

Please sign in to comment.