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.
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
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.
This project is released under the terms of the MIT license.