Skip to content

update rustowlc toolchain version #48

update rustowlc toolchain version

update rustowlc toolchain version #48

Workflow file for this run

name: Check RustOwl
on:
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
cargo:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- run: rustup component add rustfmt clippy
working-directory: ./rustowl
- run: cargo fmt --check
working-directory: ./rustowl
- run: cargo check
working-directory: ./rustowl
- run: cargo clippy
working-directory: ./rustowl
vscode:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: yarn install --frozen-locked
working-directory: ./vscode
- run: yarn prettier -c src
working-directory: ./vscode
- run: yarn lint && yarn check-types
working-directory: ./vscode