bisects.yml 579 B

123456789101112131415161718192021222324
  1. # See https://github.com/juancarlospaco/nimrun-action/issues/3#issuecomment-1607344901
  2. name: issue comments bisects
  3. on:
  4. issue_comment:
  5. types: created
  6. jobs:
  7. test:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v3
  11. # nimrun-action requires Nim installed.
  12. - uses: jiro4989/setup-nim-action@v1
  13. with:
  14. nim-version: 'devel'
  15. - name: Install Dependencies
  16. run: sudo apt-get install --no-install-recommends -yq valgrind
  17. - uses: juancarlospaco/nimrun-action@nim
  18. with:
  19. github-token: ${{ secrets.GITHUB_TOKEN }}