Bump version #4
Workflow file for this run
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: Run tests | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
run_tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Init and update submodules | |
run: | | |
git submodule init | |
git submodule update | |
- uses: jiro4989/setup-nim-action@v2 | |
name: Set up Nim | |
- name: Build and run tests | |
run: | | |
nimble test -Y |