Add information regarding student support #9
Workflow file for this run
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 Default Styles | |
on: [pull_request] | |
jobs: | |
check_default_themes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Verify theme.yml | |
run: | | |
[[ -L theme.yml ]] || { echo "ERROR: theme.yml should be a symlink -> themes/SEA.yml"; exit 1; } | |
[[ "$(readlink theme.yml)" == "themes/SEA.yml" ]] || { echo "ERROR: theme.yml should be a symlink -> themes/SEA.yml"; exit 1; } |