[Dev Env] Remove support for Python 3.8 #72
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
# The purpose of this workflow is to "skip" the `build_website` job when the | |
# changed code does not modify any files under `/website`. | |
name: Test Website Build | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- 'website/**' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- 'website/**' | |
jobs: | |
build_website: | |
name: Test Website Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: 'echo "No build required."' |