Skip to content

speed up ci by using binary #24

speed up ci by using binary

speed up ci by using binary #24

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml: (Line: 11, Col: 15, Idx: 180) - (Line: 11, Col: 21, Idx: 186): While scanning a plain scalar, find unexpected ':'.
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
nim: [binary:stable, binary:1.6.18]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: iffy/install-nim@v4
with:
version: ${{ matrix.nim }}
- name: Build
run: nimble install -y
- name: Test
run: nimble test -y