.github/workflows/test.yml #1497
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
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 19 * * *" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: | |
- windows-latest | |
- macos-latest | |
- ubuntu-latest | |
nimversion: | |
- devel | |
- stable | |
name: ${{ matrix.os }} - ${{ matrix.nimversion }} | |
runs-on: ${{ matrix.os }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jiro4989/setup-nim-action@v1 | |
with: | |
nim-version: ${{ matrix.nimversion }} | |
- run: nim --version | |
- name: Install Mercurial on macOS | |
if: matrix.os == 'macos-latest' | |
run: brew install mercurial | |
- name: Install checksums | |
run: nim r src/nimblepkg/private/clone.nim | |
- name: Run nim c -r tester | |
run: | | |
cd tests | |
nim c -r --mm:refc tester | |
# there's no need to add nimblepkg unit tests -- | |
# they are run by tmoduletests.nim | |
- run: ./src/nimble install -y |