chore(deps): update dependency pre-commit to v4 #110
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 test | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull python image | |
run: docker pull python:3.10-slim | |
- name: Build app container | |
run: docker compose build daemon | |
- name: Run app container | |
run: docker compose up -d daemon | |
# - name: Run pre-commit hooks | |
# uses: pre-commit/[email protected] | |
- name: Run tests | |
run: docker compose run daemon python test.py |