Skip to content

parser rewrite

parser rewrite #62

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repository
uses: actions/checkout@v3
with:
submodules: true
- name: 🏗 Setup monorepo
uses: ./.github/actions/setup-monorepo
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: 📦 Build
id: build
run: cargo build
- name: 🦺 Test
id: test
run: cargo test