Skip to content

Commit

Permalink
Try
Browse files Browse the repository at this point in the history
  • Loading branch information
amh4r committed Oct 22, 2023
1 parent ecc791a commit a612823
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,20 @@ jobs:
- name: "Install"
run: "make install"

- name: "Format check"
run: "make format-check"
# - name: "Format check"
# run: "make format-check"

- name: "Lint"
run: "make lint"
# - name: "Lint"
# run: "make lint"

- name: "Type check"
run: "make type-check"
# - name: "Type check"
# run: "make type-check"

- name: "Unit test"
run: "make utest"
# - name: "Unit test"
# run: "make utest"

- name: "Integration test"
run: "make itest"
# run: "make itest"
run: "npx --help"
with:
node-version: "18.x"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
check-venv:
@if [[ -z "$${CI}" ]] && [[ -z "$${VIRTUAL_ENV}" ]]; then \
@if [ -z "$${CI}" ] && [ -z "$${VIRTUAL_ENV}" ]; then \
echo "virtual environment is not activated"; \
exit 1; \
fi
Expand Down

0 comments on commit a612823

Please sign in to comment.