Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bluca committed May 9, 2024
1 parent 224ec8f commit 4be8166
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
# SPDX-License-Identifier: CC0-1.0
# vi: ts=2 sw=2 et:

name: Run tests
on: [pull_request]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false
steps:
- name: Repository checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt -y update && sudo apt -y install python3-pyelftools python3-pytest
- name: Run tests
run: make check

0 comments on commit 4be8166

Please sign in to comment.