8000 fix(windows): unzip · cordx56/rustowl@427aa27 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(windows): unzip #243

fix(windows): unzip

fix(windows): unzip #243

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
- run: cargo fmt --check
- run: cargo clippy
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
0