Skip to content

Fix resolving of idents to symbol indexes #1859

Fix resolving of idents to symbol indexes

Fix resolving of idents to symbol indexes #1859

Workflow file for this run

on: push
name: CI
jobs:
fmt:
name: Rustfmt
runs-on: ubuntu-22.04
strategy:
matrix:
rust: [ stable, 1.65.0 ]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
check:
name: Check
runs-on: ubuntu-22.04
strategy:
matrix:
rust: [stable, 1.65.0]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --all-features
clippy:
name: Clippy
runs-on: ubuntu-22.04
strategy:
matrix:
rust: [ stable, 1.65.0 ]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -A dead_code
test:
name: Test Suite
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
bench:
name: Test Benches
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --benches