Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Merge pull request #6 from CSUSTers/dependabot/npm_and_yarn/typescrip… #38

Merge pull request #6 from CSUSTers/dependabot/npm_and_yarn/typescrip…

Merge pull request #6 from CSUSTers/dependabot/npm_and_yarn/typescrip… #38

Workflow file for this run

name: on-push
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
check-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- name: Clippy
run: cargo clippy --no-deps --all-targets
- name: Run tests
run: cargo test -v