Update lock file and pre-commit #59
Workflow file for this run
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: Check template files | |
on: push | |
jobs: | |
check-template-files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Check template files | |
run: | | |
if [ "${{ github.event.repository.name }}" == "microservice-repository-template" ] | |
then | |
echo "Skipping this test as operating on the template repo." | |
else | |
./scripts/update_template_files.py --check | |
fi |