8000 Merge pull request #126 from cordx56/create-pull-request/autogenerate-changelog · cordx56/rustowl@f79cf37 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #126 from cordx56/create-pull-request/autogenerate… #230

Merge pull request #126 from cordx56/create-pull-request/autogenerate…

Merge pull request #126 from cordx56/create-pull-request/autogenerate… #230

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