Skip to content

Remove unused quoted-key syntax class #561

Remove unused quoted-key syntax class

Remove unused quoted-key syntax class #561

Workflow file for this run

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 }}