Skip to content

Merge pull request #24 from bung87/fix-macosx #13

Merge pull request #24 from bung87/fix-macosx

Merge pull request #24 from bung87/fix-macosx #13

Workflow file for this run

name: build
on: [push]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
# only Linux currently supported
# - macOS-latest
# - windows-latest
nimversion:
- stable
# - devel
steps:
- uses: actions/checkout@v2
- uses: iffy/install-nim@v5
with:
nimversion: ${{ matrix.nimversion }}
# - name: Install Linux deps
# if: runner.os == 'Linux'
# run: |
# sudo apt-get update -q
# - name: Install macOS deps
# if: runner.os == 'macOS'
# run: |
# brew update
# brew install libsodium
- name: Test
run: |
nimble refresh
nimble test