Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

0.43.0

0.43.0 #564

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
jobs:
rust:
name: deno_npm-ubuntu-latest-release
runs-on: ubuntu-latest
timeout-minutes: 30
env:
CARGO_INCREMENTAL: 0
GH_ACTIONS: 1
RUST_BACKTRACE: full
RUSTFLAGS: -D warnings
steps:
- name: Clone repository
uses: actions/checkout@v5
- uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Format
run: cargo fmt --all -- --check
- name: Lint
run: cargo clippy --all-targets --all-features --release
- name: Build
run: cargo build --all-targets --all-features --release
- name: Test
run: cargo test --all-targets --all-features --release