-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ::= .github/workflows/mirror.yml
- Loading branch information
1 parent
b544ac3
commit d179cc8
Showing
1 changed file
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
######################## GNU General Public License 3.0 ######################## | ||
## ## | ||
## Copyright (C) 2024 Kevin Matthes ## | ||
## ## | ||
## This program is free software: you can redistribute it and/or modify ## | ||
## it under the terms of the GNU General Public License as published by ## | ||
## the Free Software Foundation, either version 3 of the License, or ## | ||
## (at your option) any later version. ## | ||
## ## | ||
## This program is distributed in the hope that it will be useful, ## | ||
## but WITHOUT ANY WARRANTY; without even the implied warranty of ## | ||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## | ||
## GNU General Public License for more details. ## | ||
## ## | ||
## You should have received a copy of the GNU General Public License ## | ||
## along with this program. If not, see <https://www.gnu.org/licenses/>. ## | ||
## ## | ||
################################################################################ | ||
|
||
################################################################################ | ||
## | ||
## AUTHOR Kevin Matthes | ||
## BRIEF Update the README when changing `src/lib.rs`. | ||
## COPYRIGHT GPL-3.0 | ||
## DATE 2024 | ||
## FILE mirror.yml | ||
## NOTE See `LICENSE' for full license. | ||
## See `README.md' for project details. | ||
## | ||
################################################################################ | ||
|
||
name: mirror | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- src/lib.rs | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
readme: | ||
if: github.repository == 'kevinmatthes/aeruginous-rs' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: taiki-e/[email protected] | ||
with: | ||
tool: cargo-llvm-cov | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
python-version: 3.11 | ||
|
||
- run: rustup update | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
|
||
- run: echo pycobertura >> requirements.txt | ||
- uses: fregante/[email protected] | ||
- uses: py-actions/[email protected] | ||
|
||
- run: | | ||
cargo llvm-cov --cobertura --output-path cobertura.xml | ||
sed "s/<!-- cov -->.*<!-- cov -->/<!-- cov -->$( \ | ||
pycobertura show -f csv --delimiter , cobertura.xml | \ | ||
grep TOTAL | \ | ||
cut -d, -f4)<!-- cov -->/g" src/lib.rs >> lib.rs | ||
mv lib.rs src/ | ||
git add src/lib.rs | ||
git commit --allow-empty -m \ | ||
"[GitHub Actions] Update Coverage in src/lib.rs" | ||
- run: | | ||
cargo install aeruginous | ||
aeruginous rs2md -i src/lib.rs --outer -o README.md | ||
git add README.md | ||
git commit --allow-empty -m \ | ||
"[GitHub Actions] Mirror README.md from src/lib.rs" | ||
- uses: peter-evans/[email protected] | ||
with: | ||
assignees: | | ||
kevinmatthes | ||
branch: documentation/mirror | ||
branch-suffix: timestamp | ||
labels: | | ||
documentation | ||
milestone: 1 | ||
title: '[GitHub Actions] Mirror README.md from src/lib.rs' | ||
|
||
################################################################################ |