Skip to content

Change installation paths in release.yml #7

Change installation paths in release.yml

Change installation paths in release.yml #7

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
push:
branches: [dev]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure
run: |
mkdir -p tests/build
cd tests/build
cmake .. -DCMAKE_BUILD_TYPE=Release
- name: Build & Run Tests
run: |
cd tests/build
make -j$(nproc)
./cupstore_tests