Skip to content

test(scan): add let statement test #4

test(scan): add let statement test

test(scan): add let statement test #4

Workflow file for this run

name: do all tests
on:
push:
branches:
- "master"
- "dev*"
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
- name: Build
run: cargo +nightly build --verbose
- name: Run tests
run: cargo +nightly test --verbose