Check Upstream Options #19
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
name: Check Upstream Options | |
on: | |
schedule: | |
- cron: 5 7 3 * * | |
workflow_dispatch: | |
jobs: | |
upstream: | |
name: Check Upstream Options | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install htmlq | |
run: cargo install htmlq | |
- name: Verify htmlq | |
run: htmlq --version | |
- name: Check Upstream Options | |
run: make upstream |