Skip to content

bump

bump #109

Workflow file for this run

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