Add March 2026 raffle prizes #640
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| test-parse-script: | |
| name: Test parse-past-meetings.sh | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Test parse-past-meetings.sh | |
| run: | | |
| chmod +x script/parse-past-meetings.sh | |
| script/parse-past-meetings.sh > /tmp/meetings-output.md | |
| # Verify output contains expected content | |
| if ! grep -q "## Past Meetings" /tmp/meetings-output.md; then | |
| echo "Error: Output missing expected '## Past Meetings' header" | |
| exit 1 | |
| fi | |
| echo "✓ parse-past-meetings.sh executed successfully on ${{ matrix.os }}" | |
| build: | |
| runs-on: ubuntu-latest | |
| name: script/cibuild | |
| needs: test-parse-script | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.2.0 | |
| bundler-cache: true | |
| - name: build | |
| run: script/bootstrap | |
| - name: test | |
| run: script/cibuild | |
| - name: Upload site artifact | |
| if: success() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: site | |
| path: _site |