Add format_code_blocks
#164
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: Validate content | |
on: | |
push: | |
pull_request: | |
branches: [master, release/*] | |
schedule: | |
- cron: '0 5 * * 1' # Every Monday 5 AM UTC | |
jobs: | |
validate-flags: | |
name: Validate flags | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
- os: macos-latest | |
- os: windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Download source | |
uses: actions/checkout@v4 | |
- name: Install Crystal | |
uses: crystal-lang/install-crystal@v1 | |
with: | |
crystal: nightly | |
- name: Run test script | |
run: scripts/validate-flags.sh |