Merge pull request #24 from bung87/fix-macosx #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |