Skip to content

Switch from Regex-based parsing to NimbleParsec grammar-based parsing #21

Switch from Regex-based parsing to NimbleParsec grammar-based parsing

Switch from Regex-based parsing to NimbleParsec grammar-based parsing #21

Workflow file for this run

---
name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: 27
elixir-version: 1.17
- name: Install Dependencies
run: mix do deps.get, deps.compile
- name: Static Analysis
run: mix credo --strict
env:
MIX_ENV: test
- name: Run Tests
run: mix coveralls.github --trace
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}