Support Themes (#66) #252
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: Lint | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install flake8 | |
run: pip3 install flake8 | |
- name: Install shellcheck | |
run: sudo apt install shellcheck | |
- name: Lint | |
run: make lint | |