Skip to content

Add CI-job for pushes and pull-requests #1

Add CI-job for pushes and pull-requests

Add CI-job for pushes and pull-requests #1

Workflow file for this run

name: Unittests CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Show compiler version
run: gcc --version
- name: Build and run tests
run: make test