Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
der-eismann committed Feb 20, 2024
1 parent e05727a commit 3a7b797
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/REUSE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ name: REUSE Compliance Check
on: [push, pull_request]

jobs:
test:
check_compliance:
runs-on: ubuntu-latest
name: Check REUSE compliance

steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: REUSE Compliance Check
uses: fsfe/reuse-action@v2
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# SPDX-FileCopyrightText: 2024 Serpent OS Developers
# SPDX-License-Identifier: CC0-1.0

name: CI Build

on: [push, pull_request, workflow_dispatch]

jobs:
build:
runs-on: ubuntu-latest
name: Build & Upload

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build project
run: |
task build
task check

0 comments on commit 3a7b797

Please sign in to comment.