mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
ref https://github.com/actions/checkout/issues/1448 probably nodejs needs to be updated to 20.x
24 lines
579 B
YAML
24 lines
579 B
YAML
# See https://github.com/juancarlospaco/nimrun-action/issues/3#issuecomment-1607344901
|
|
name: issue comments bisects
|
|
on:
|
|
issue_comment:
|
|
types: created
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
# nimrun-action requires Nim installed.
|
|
- uses: jiro4989/setup-nim-action@v1
|
|
with:
|
|
nim-version: 'devel'
|
|
|
|
- name: Install Dependencies
|
|
run: sudo apt-get install --no-install-recommends -yq valgrind
|
|
|
|
- uses: juancarlospaco/nimrun-action@nim
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|