Skip to content

Commit

Permalink
Merge pull request #229 from josebraga/feature/github-actions
Browse files Browse the repository at this point in the history
CI: Add GitHub Actions workflow for Linux build and test.
  • Loading branch information
luis109 authored May 9, 2022
2 parents e98a788 + 420bf26 commit 721cdc0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: linux

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Prepare
run: cmake -B ${{github.workspace}}/build -DDEBUG=1 -DTESTS=1

- name: Build & Test
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --target Experimental

0 comments on commit 721cdc0

Please sign in to comment.