bump #109
Workflow file for this run
This file contains hidden or 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: test | |
| on: | |
| push: | |
| paths-ignore: | |
| - LICENSE | |
| - README.* | |
| - .github/workflows | |
| pull_request: | |
| paths-ignore: | |
| - LICENSE | |
| - README.* | |
| - .github/workflows | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| nim-version: | |
| - 'stable' | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - if: runner.os == 'Windows' | |
| run: choco install openssl -y | |
| - uses: jiro4989/setup-nim-action@v2 | |
| with: | |
| nim-version: ${{ matrix.nim-version }} | |
| - if: runner.os == 'Linux' | |
| run: sudo apt install libpcre3-dev libpcre3 | |
| - run: nimble install -Y | |
| - run: nim c -r src/${{ github.event.repository.name }}.nim |