Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/BachiLi/lajolla_public into…
Browse files Browse the repository at this point in the history
… main
  • Loading branch information
BachiLi committed Jan 8, 2024
2 parents f98d13a + 2ace266 commit a4f599c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: C/C++ CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: configure
run: mkdir build; cd build; cmake ..
- name: make
run: cd build; make -j
- name: make test
run: cd build; make test

0 comments on commit a4f599c

Please sign in to comment.