remove segfault example run in actions because it exits with segfault… #3
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: Examples | |
on: | |
push: | |
workflow_dispatch: | |
env: | |
FORCE_COLOR: "1" | |
jobs: | |
examples: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: laytan/setup-odin@v1 | |
- name: manual | |
run: odin run examples/manual -vet -strict-style | |
- name: manual debug | |
run: odin run examples/manual -vet -strict-style -debug | |
- name: allocator | |
run: odin run examples/allocator -vet -strict-style | |
- name: allocator debug | |
run: odin run examples/allocator -vet -strict-style -debug | |
- name: assert | |
run: odin run examples/assert_backtrace -vet -strict-style | |
- name: assert debug | |
run: odin run examples/assert_backtrace -vet -strict-style -debug |