fix checking for changes in synonyms and collections during update (#85) #144
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: "Format" | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
push: | |
branches: main | |
jobs: | |
lint: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Upgrade Setuptools | |
run: pip install --upgrade setuptools wheel | |
- name: Install requirements | |
run: pip install -r requirements-dev.txt | |
- name: Run Format | |
run: black . |