diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 330841b..0290e5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,13 +7,23 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macOS-latest] + os: [ubuntu-latest, macOS-latest, windows-latest] nim: [stable, 1.2.6] steps: - uses: actions/checkout@v2 - uses: iffy/install-nim@v3 with: version: ${{ matrix.nim }} + + # workaround for https://github.com/iffy/install-nim/issues/11 + - name: Workaround SSL error with choosenim + run: | + curl -fO https://curl.se/ca/cacert.pem + install cacert.pem ~/.nimble/bin + ls ~/.nimble/bin + shell: bash + if: runner.os == 'Windows' + - name: Build run: nimble install -y - name: Test