https://github.com/soda3x/rustlings-progress-action
Github action to keep track of your Rustlings progress
https://github.com/soda3x/rustlings-progress-action
rust rust-lang rustlings
Last synced: 10 months ago
JSON representation
Github action to keep track of your Rustlings progress
- Host: GitHub
- URL: https://github.com/soda3x/rustlings-progress-action
- Owner: soda3x
- License: apache-2.0
- Created: 2025-06-03T02:01:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-10T06:13:51.000Z (about 1 year ago)
- Last Synced: 2025-07-04T07:41:21.963Z (12 months ago)
- Topics: rust, rust-lang, rustlings
- Language: Shell
- Homepage:
- Size: 151 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rustlings Progress Updater
A GitHub Action that updates your `README.md` with your current Rustlings exercise and progress table.

## 🚀 Usage
```yaml
name: Update README with Rustlings Progress
on:
push:
branches: [main]
permissions:
contents: write
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: soda3x/rustlings-progress-action@v1
```