Skip to content

Merge pull request #144 from nim-lang/dependabot/github_actions/peace… #234

Merge pull request #144 from nim-lang/dependabot/github_actions/peace…

Merge pull request #144 from nim-lang/dependabot/github_actions/peace… #234

Workflow file for this run

---
name: test
# yamllint disable-line rule:truthy
on:
- push
- pull_request
jobs:
before:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, '[skip ci]')"
steps:
- run: echo "commit message doesn't contain '[skip ci]'"
test:
runs-on: ubuntu-latest
strategy:
matrix:
nim-version:
- '1.4.8'
- '1.6.12'
- 'devel'
needs: before
steps:
- uses: actions/checkout@v4
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim-version }}
- run: nimble install -y
- run: nimble test
- run: nimble checkExamples