Add Tech Kafi 2024-11-05 Meetup (#832) #316
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: Verify Data | |
on: [push, pull_request] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Verify Conference Data | |
run: bundle exec rake verify_conferences | |
- name: Verify Meetups Data | |
run: bundle exec rake verify_meetups | |
- name: Verify Website build | |
run: bundle exec jekyll build |