Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Latest commit

 

History

History
50 lines (34 loc) · 1.09 KB

README.md

File metadata and controls

50 lines (34 loc) · 1.09 KB

⚠️ Archived ⚠️

The project did not turn out to be as useful as anticipated. Therefore it is no longer maintained.

If you do want to use parts of this, feel free, but make sure to keep the steps updated.


Workflows For Rust Projects

A reference for GitHub Action workflows to use on Rust projects:

Copy, paste and hack away.

Usage

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
  pull_request:
    types:
      - opened
      - reopened
      - synchronize

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

The release workflow is too specific to be offered as re-usable workflow.

License

This project is released under the terms of the MIT license.