Skip to content

Commit

Permalink
♻️ Create Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevera committed Jul 15, 2024
1 parent 7c46cdb commit 24ebfb9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
linux-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Checks
run: make check
- name: Run tests (as root)
run: |
sudo make test
- name: Compile to a file
run: make build
- name: Run checks on the single file
run: make distcheck

0 comments on commit 24ebfb9

Please sign in to comment.