Crates.io | rust-workflows |
lib.rs | rust-workflows |
version | 0.9.0 |
source | src |
created_at | 2021-12-22 11:38:00.127594 |
updated_at | 2022-03-02 09:21:17.096245 |
description | A reference for GitHub Action workflows to use on Rust projects |
homepage | |
repository | |
max_upload_size | |
id | 501604 |
size | 26,474 |
A reference for GitHub Action workflows to use on Rust projects:
Copy, paste and hack away.
You either base your own workflows on these by copy & paste or you can call them from your workflow directly.
Here is how you can re-use the existing continuous integration workflow right away:
---
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/ci.yaml@v0.8.0
The release workflow is too specific to be offered as re-usable workflow.
This project is released under the terms of the MIT license.