Skip to content

Fix lexer for nighly after 2023-12-02 #206

Fix lexer for nighly after 2023-12-02

Fix lexer for nighly after 2023-12-02 #206

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Initialize Rustup
run: |
rustup toolchain install nightly --component rustfmt clippy --profile minimal --force
rustup override set nightly
- name: Run build
run: cargo build --verbose
- name: Run rustfmt
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --all
- name: Build
run: cargo build --release --verbose
- name: Run debug tests
run: cargo test --verbose
- name: Run release tests
run: cargo test --verbose --release