#workflow #github-action #continuous-integration #projects #reference #ci

app rust-workflows

GitHub Action 工作流程在 Rust 项目中使用的参考

17 个版本 (7 个破坏性版本)

0.9.0 2022 年 3 月 2 日
0.8.2 2021 年 12 月 27 日
0.7.1 2021 年 12 月 23 日
0.6.0 2021 年 12 月 23 日
0.2.1 2021 年 12 月 22 日

测试 中排名第 589

Download history 19/week @ 2024-07-03 54/week @ 2024-07-24

每月下载量 73

MIT 许可协议 MIT

9KB

Rust 项目的流程

GitHub Action 工作流程在 Rust 项目中使用的参考

复制、粘贴并开始修改。

用法

您可以通过复制粘贴来基于这些工作流程构建自己的工作流程,或者您可以直接从您的工作流程中调用它们。

以下是如何立即重新使用现有的 持续集成 工作流程的方法

---
name: CI

on:
  push:
    branches:
      - main
      - master
    paths-ignore:
      - 'docs/**'
      - '**.md'
  pull_request:
    types:
      - opened
      - reopened
      - synchronize
    paths-ignore:
      - 'docs/**'
      - '**.md'

jobs:
  rust-workflows-ci:
    name: CI
    uses: hendrikmaus/rust-workflows/.github/workflows/[email protected]

发布工作流程太特定,无法作为可重用的工作流程提供。

许可协议

本项目根据 MIT 许可协议发布。

依赖关系

~3–11MB
~101K SLoC