updated github actions
This commit is contained in:
parent
49ae58523c
commit
2a35ab402c
2 changed files with 11 additions and 19 deletions
28
.github/workflows/build.yml
vendored
28
.github/workflows/build.yml
vendored
|
@ -1,26 +1,16 @@
|
||||||
name: Run tests
|
name: Github Actions
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Cache choosenim
|
|
||||||
id: cache-choosenim
|
|
||||||
uses: actions/cache@v1
|
|
||||||
with:
|
|
||||||
path: ~/.choosenim
|
|
||||||
key: ${{ runner.os }}-choosenim-stable
|
|
||||||
|
|
||||||
- name: Cache nimble
|
|
||||||
id: cache-nimble
|
|
||||||
uses: actions/cache@v1
|
|
||||||
with:
|
|
||||||
path: ~/.nimble
|
|
||||||
key: ${{ runner.os }}-nimble-stable
|
|
||||||
|
|
||||||
- uses: jiro4989/setup-nim-action@v1
|
- uses: jiro4989/setup-nim-action@v1
|
||||||
|
|
||||||
- run: nimble test -y
|
- run: nimble test -y
|
||||||
|
- run: nimble test --gc:orc -y
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
# VMath
|
# VMath
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
`nimble install vmath`
|
`nimble install vmath`
|
||||||
|
|
||||||
Your one stop shop for vector math routines for 2d and 3d graphics.
|
Your one stop shop for vector math routines for 2d and 3d graphics.
|
||||||
|
|
Loading…
Reference in a new issue