mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
- https://github.com/nim-lang/Nim/actions/runs/6187256704/job/16796720625#step:4:29 - https://github.com/nim-lang/Nim/issues/22699
26 lines
621 B
YAML
26 lines
621 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 -yq update
|
|
sudo apt-get install --no-install-recommends -yq valgrind
|
|
|
|
- uses: juancarlospaco/nimrun-action@nim
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|