chore: release 0.3.10 (#50) #108
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: Python application | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pipenv | |
pipenv install --dev | |
- name: Run tests | |
run: | | |
pipenv run unit_tests | |
- name: Build Yamale Recipe | |
run: | | |
pipenv run build_yamale | |
- name: Check Yamale Recipe for changes | |
run: git diff --quiet -- || (echo "::error file=yamale,line=0,col=0::You need to run 'python scripts/yamale_build.py'" && exit 1) | |