Skip to content

chore: rename packages in order to avoid conflicts with names #4

chore: rename packages in order to avoid conflicts with names

chore: rename packages in order to avoid conflicts with names #4

Workflow file for this run

name: Test
on:
pull_request:
merge_group:
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Set Rust caching env vars
run: |
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- run: rustup component add rustfmt clippy
- run: rustc --version
- run: cargo fmt --all --check
- run: cargo clippy -- -D warnings
- run: cargo test