Merge pull request #60 from ValKmjolnir/develop #21
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: Nasal Interpreter Test | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
mac-aarch64: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release | |
make -j6 | |
- name: Test | |
run: make test | |
linux-x86_64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release | |
make -j6 | |
- name: Test | |
run: make test |