Skip to content

Architectural description #19

Architectural description

Architectural description #19

Workflow file for this run

name: workflow CI
on:
push:
branches:
- repoDesign
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install g++ libgtest-dev -y
- name: Build project
run: make all
- name: Build test
run: make test
- name: Run tests
run: ./testGwint