Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Bump zed_extension_api from 0.0.6 to 0.1.0 in the rs-dependencies group #10

Bump zed_extension_api from 0.0.6 to 0.1.0 in the rs-dependencies group

Bump zed_extension_api from 0.0.6 to 0.1.0 in the rs-dependencies group #10

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Dependencies
run: cargo check --release --all-targets --locked --verbose
- name: Check formatting
run: cargo fmt --all -- --check --verbose
- name: Run linter
run: cargo clippy -- -D warnings
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --release --verbose