diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2023-07-01 13:18:21 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-01 18:18:21 +0200 |
commit | aedb4c26deb91b1f9e3839475386c8e173e3598e (patch) | |
tree | b62e1655152a0277d89a9d6469f413a385251ba5 /.github | |
parent | 7cb59efd4b3d282db5ddc4e7385ee9f05b53a542 (diff) | |
download | Nim-aedb4c26deb91b1f9e3839475386c8e173e3598e.tar.gz |
Bisect Bugs (#22157)
* Add Git bisect like for bug repro code on issue comments against Nim versions >1.0 * Add Git bisect like for bug repro code on issue comments against Nim versions >1.0 * Add Git bisect like for bug repro code on issue comments against Nim versions >1.0
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/bisects.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/bisects.yml b/.github/workflows/bisects.yml new file mode 100644 index 000000000..c755ef5a2 --- /dev/null +++ b/.github/workflows/bisects.yml @@ -0,0 +1,20 @@ +# 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@v3 + + # nimrun-action requires Nim installed. + - uses: jiro4989/setup-nim-action@v1 + with: + nim-version: 'devel' + + - uses: juancarlospaco/nimrun-action@nim + with: + github-token: ${{ secrets.GITHUB_TOKEN }} |