Trainee Update: July 2024 updated info #60
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: CI | |
on: | |
pull_request: | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
website: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare to build site | |
uses: ./.github/actions/prepare-build-site | |
- name: Check RuboCop | |
run: bundle exec rake rubocop | |
- name: Build the site | |
run: bundle exec rake build | |
env: | |
JEKYLL_ENV: production | |
INDICO_TOKEN: ${{ secrets.INDICO_TOKEN }} |