Remove unused quoted-key syntax class #561
This file contains hidden or 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
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build-and-test: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event_name == 'pull_request' || github.actor != 'Copilot' }} | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: Bogdanp/[email protected] | |
| with: | |
| version: stable | |
| - run: raco pkg install --batch --auto --link --name resyntax | |
| - run: raco test --drdr --package resyntax | |
| code-coverage: | |
| name: Code Coverage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: Bogdanp/[email protected] | |
| with: | |
| version: stable | |
| - run: raco pkg install --batch --auto cover cover-coveralls | |
| - run: raco pkg install --batch --auto --link --name resyntax | |
| - run: raco cover --format coveralls --suppress-log-execution --package resyntax | |
| env: | |
| COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} |