Skip to content

Update GitHub Actions for Node.js 16 deprecation #18

Update GitHub Actions for Node.js 16 deprecation

Update GitHub Actions for Node.js 16 deprecation #18

Workflow file for this run

on:
- push
- pull_request
name: Main
env:
REALIA_EMPTY: ''
REALIA_FULL: '1'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- run: cargo fmt --all -- --check
- run: cargo clippy --tests -- -D warnings