Initial commit
This commit is contained in:
commit
a7f0b68f28
10 changed files with 60 additions and 0 deletions
16
.github/workflows/build.yml
vendored
Normal file
16
.github/workflows/build.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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 -y
|
||||
- run: nimble test --gc:orc -y
|
||||
Loading…
Add table
Add a link
Reference in a new issue