Skip to content

Commit

Permalink
merge: feat: setup ci (#4)
Browse files Browse the repository at this point in the history
feat: setup ci
  • Loading branch information
Colk-tech authored Jun 20, 2024
2 parents 1ff82b9 + ca00954 commit fd3d36c
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 1 deletion.
77 changes: 77 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Python CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
IMAGE_CACHE_DIR: /tmp/cache/docker-image
IMAGE_CACHE_KEY: cache-image

jobs:
build:
name: Build docker image
runs-on: ubuntu-latest

steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v2

- uses: satackey/[email protected]
continue-on-error: true

- name: Docker build
run: make build

flake8:
name: Run flake8
runs-on: ubuntu-latest
needs: build

steps:
- name: Checkout repository
uses: actions/checkout@v2

- uses: satackey/[email protected]
continue-on-error: true

- name: Run flake8
run: |
make flake8
mypy:
name: Run mypy
runs-on: ubuntu-latest
needs: build

steps:
- name: Checkout repository
uses: actions/checkout@v2

- uses: satackey/[email protected]
continue-on-error: true

- name: Run mypy
run: |
make mypy
pytest:
name: Run pytest
runs-on: ubuntu-latest
needs: build

steps:
- name: Checkout repository
uses: actions/checkout@v2

- uses: satackey/[email protected]
continue-on-error: true

- name: Run pytest
run: |
make pytest_ci
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flake8:

.PHONY: mypy
mypy:
docker compose run --rm python bash -c "python RUN_COMMAND.py rye run mypy ./"
docker compose run --rm python bash -c "python run_command.py rye run mypy ./"

.PHONY: black
black:
Expand Down

0 comments on commit fd3d36c

Please sign in to comment.