parcel/.gitea/workflows/check.yaml
Blake Rain d2cd73bb7d
All checks were successful
Deploy / build (push) Successful in 2m54s
Check / check (push) Successful in 1m32s
fix: try disabling the cache
2023-10-18 02:33:24 +01:00

33 lines
759 B
YAML

name: Check
on:
- push
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout the Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
node-version: "20.x"
- name: Install Node Packages
run: npm install
- name: Install the Stable Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
env:
RUSTUP_PERMIT_COPY_RENAME:
with:
toolchain: stable
components: clippy
cache: false
- name: Run Cargo Check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run Cargo Clippy
uses: actions-rs/cargo@v1
with:
command: clippy