Update test.yml #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependecies | |
run: sudo apt-get install just re2c libopenblas-dev liblapacke-dev | |
- name: Debug | |
run: just test | |
- name: Release | |
run: just release | |
- name: Verify Clean Git Tree | |
run: git diff --exit-code |