Decrease stability requirement for koodimonni-language/sv_se #90
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: "Nitpick git commits" | |
on: [push, pull_request] | |
env: | |
DOMAINS: seravo.com | |
PYTHON_VERSION: "3.10" | |
jobs: | |
nitpick: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repository | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Install Gnitpick | |
run: curl -O https://raw.githubusercontent.com/Seravo/gnitpick/master/gnitpick.py | |
- name: Set up python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Run gnitpick | |
run: python3 gnitpick.py --verbose --email-domains "${DOMAINS}" |