Add Ruby Belgium Luma Meetup Group #805
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: Verify Data | |
permissions: | |
contents: read | |
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 |