Skip to content

Create ubuntu_22_04.yml #1

Create ubuntu_22_04.yml

Create ubuntu_22_04.yml #1

Workflow file for this run

name: ubuntu-22.04
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build and test
run: |
mkdir build
cd build
cmake -DHMDF_TESTING=ON -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --parallel $(nproc)
ctest