add parsing for post unary expression #120
This file contains 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: Zom checks | |
on: | |
push: | |
paths: | |
- '**.rs' | |
- '**.toml' | |
- '**.yml' | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
tests-zom: | |
name: "${{ matrix.crate[0] }} on ${{ matrix.os }}" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
crate: | |
- ["zom_parser", "./stage1/zom_parser"] | |
- ["zom_common", "./stage1/zom_common"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install latest stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Build | |
working-directory: ${{ matrix.crate[1] }} | |
run: cargo build --release --verbose | |
- name: Run tests | |
working-directory: ${{ matrix.crate[1] }} | |
run: cargo test --release --verbose |