Skip to content

Commit bdc7e03

Browse files
jwnrtluismarques
authored andcommitted
Add CI workflow with REUSE linting
Signed-off-by: James Wainwright <james.wainwright@lowrisc.org>
1 parent dfeeb9b commit bdc7e03

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Copyright lowRISC Contributors (OpenTitan project).
2+
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: CI
6+
7+
on:
8+
push:
9+
branches: ["*"]
10+
pull_request:
11+
branches: ["*"]
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
lint-check:
19+
runs-on: "ubuntu-24.04"
20+
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v5
24+
25+
- name: License check
26+
uses: fsfe/reuse-action@v6

0 commit comments

Comments
 (0)