Skip to content

Commit

Permalink
Add a github action
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed Oct 17, 2024
1 parent edad56f commit b284d04
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CMake Build Matrix

# Controls when the action will run. Triggers the workflow on push
on:
push:
pull_request:

jobs:
build:
runs-on: "ubuntu-latest"
steps:
- name: "Check out"
uses: actions/checkout@v4
- name: "Configure"
run: |
./configure
- name: "Build"
run: |
make
- name: "Test"
run: |
make test

0 comments on commit b284d04

Please sign in to comment.