Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.

Fix parser tests for whitespace sensitivity (#8) #82

Fix parser tests for whitespace sensitivity (#8)

Fix parser tests for whitespace sensitivity (#8) #82

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
name: Clippy
if: "!contains(github.event.head_commit.message, '[ci skip]')"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run Clippy
run: cargo clippy --all-targets --all-features
test:
name: Test
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test