Skip to content

Update README.md

Update README.md #41

Workflow file for this run

name: CI
on: push
jobs:
Test:
if: |
!contains(github.event.head_commit.message, '[skip ci]')
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
nim-channel: [stable, devel]
name: ${{ matrix.os }}-${{ matrix.nim-channel }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup nim
uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim-channel }}
- name: Test
shell: bash
run: |
sudo apt-get update
sudo apt-get install gcc-multilib # Support for 32bits
clang --version
# For some reason wasm-ld is not in PATH, so add it. llvm version should probably match that of clang
export PATH=$PATH:/usr/lib/llvm-11/bin
nim --version
nimble install -dy
nimble test