Skip to content

Commit

Permalink
added GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
skramm committed Feb 29, 2024
1 parent bd38f9a commit cfd024e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI-testing

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

jobs:
job2:
name: CI-testing
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
compiler: [g++, clang++]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: -- boost install --
run: sudo apt-get install -y libboost-all-dev
- name: check version
run: gcc --version; clang --version
- name: --- make demo ---
run: make demo
- name: --- make test ---
run: make test

0 comments on commit cfd024e

Please sign in to comment.