pixie/.github/workflows/build.yml
Ryan Oldenburg fe0125dea0 rm
2022-02-05 18:47:58 -06:00

22 lines
554 B
YAML

name: Github Actions
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
nim-version: ['1.4.x', 'stable']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim-version }}
- 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