pixie/.github/workflows/build.yml
2021-06-18 15:20:26 -05:00

19 lines
454 B
YAML

name: Github Actions
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: jiro4989/setup-nim-action@v1
- run: nimble test -d:release -y
- run: nimble test -d:release -d:pixieNoSimd -y
- run: nimble test --gc:orc -d:release -y
- run: nim cpp -d:release -r tests/all.nim