remove flags once collected #51
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: test | ||
on: | ||
push: | ||
paths-ignore: | ||
- LICENSE | ||
- README.* | ||
pull_request: | ||
paths-ignore: | ||
- LICENSE | ||
- README.* | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
nim-version: | ||
- 'stable' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jiro4989/setup-nim-action@v1 | ||
with: | ||
nim-version: ${{ matrix.nim-version }} | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- run: | | ||
sudo apt install libpcre3-dev libpcre3 | ||
- run: nimble install -Y | ||
- run: nim c -r src/${{ github.event.repository.name }}.nim | ||
- run: nimble test |