Skip to content

Update CI to please github #34

Update CI to please github

Update CI to please github #34

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
robusta:
name: robusta Check & Build
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build
liberica:
name: liberica Check & Build
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: oven-sh/setup-bun@v1

Check failure on line 36 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 36, Col: 9): 'uses' is already defined
- name: Install dependencies
run: bun install
- name: Lint
run: bun lint