build(deps): bump pymysql from 1.1.0 to 1.1.1 in /api #41
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: CI api | |
on: | |
push: | |
branches: [master] | |
paths: | |
- "api/**" | |
pull_request: | |
branches: [master] | |
paths: | |
- "api/**" | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./api | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12.2" | |
- name: Install poetry | |
run: python3 -m pip install poetry | |
- name: Install dependencies | |
run: poetry install | |
- name: Create env file | |
run: | | |
touch .env | |
echo ENV=ci >> .env | |
cat .env | |
- name: MyPy | |
run: poetry run task mypy | |
- name: Tests | |
run: poetry run task test |