fix server caching issue causing Theme failures #466
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' | |
- name: Install Dependencies | |
run: sudo apt-get install --no-install-recommends -yq valgrind | |
- uses: juancarlospaco/nimrun-action@nim | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |