Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

add rust test for realloc example#1291

add rust test for realloc example

add rust test for realloc example #1291

Workflow file for this run

# The name of your workflow. GitHub displays the names of your workflows on your repository's "Actions" tab
name:Rust
# To automatically trigger the workflow
on:
# NB: this differs from the book's project!
# These settings allow us to run this specific CI pipeline for PRs against
# this specific branch (a.k.a. book chapter).
push:
branches:
-main
pull_request:
types:[opened, synchronize, reopened]
branches:
-main
# A workflow run is made up of one or more jobs, which run in parallel by default
# Each job runs in a runner environment specified by runs-on
jobs:
# `fmt` container job
fmt:
name:Rustfmt
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v4
-uses:dtolnay/rust-toolchain@stable
with:
# Specific to dtolnay/rust-toolchain: Comma-separated string of additional components to install
components:rustfmt
-name:Enforce formatting
run:cargo fmt --check
# `clippy` container job
clippy:
name:Clippy
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v4
-uses:dtolnay/rust-toolchain@stable
with:
components:clippy
-name:Linting
run:cargo clippy -- -D warnings

[8]ページ先頭

©2009-2025 Movatter.jp