Skip to content

Commit 3b4b2f6

Browse files
committed
Adds basic cicd
1 parent 4e5cf9d commit 3b4b2f6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
- name: Run isort
3131
run: isort --check-only --profile black src tests
3232

33-
- name: Run flake8
34-
run: flake8 src tests
33+
#- name: Run flake8
34+
# run: flake8 src tests
3535

36-
- name: Run mypy
37-
run: mypy src
36+
#- name: Run mypy
37+
# run: mypy src
3838

3939
test:
4040
runs-on: ubuntu-latest

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ test-cov: ## Run tests with coverage
2626
lint: ## Run linters
2727
$(BLACK) src tests
2828
$(ISORT) --profile black src tests
29-
## $(FLAKE8) src tests
30-
## $(MYPY) src
29+
$(FLAKE8) src tests
30+
$(MYPY) src
3131

3232
format: ## Format code
3333
$(BLACK) src tests

0 commit comments

Comments
 (0)