Skip to content

Commit

Permalink
indenetation
Browse files Browse the repository at this point in the history
  • Loading branch information
NoureldinYosri committed Dec 6, 2024
1 parent db3b611 commit 814e026
Showing 1 changed file with 30 additions and 28 deletions.
58 changes: 30 additions & 28 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,52 +21,54 @@ jobs:
buid-and-test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
strategy:
fail-fast: false

steps:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install Dependencies

- name: Install Dependencies
run: |
pip install -r dev_tools/dev.env.txt
- name: Typecheck
run: |
. ./ci/mypy.sh
- name: Typecheck
run: |
. ./ci/mypy.sh

- name: shellcheck
run: |
. ./ci/shellcheck.sh
- name: shellcheck
run: |
. ./ci/shellcheck.sh
- name: format
run: |
black --exclude tunits/proto/.* --check .
- name: format
run: |
black --exclude tunits/proto/.* --check .
- name: lint
run:
. ./ci/pylint_all.sh
- name: lint
run:
. ./ci/pylint_all.sh

- name: Check modified protos
run: |
./ci/build_changed_protos.sh origin/main
- name: Check modified protos
run: |
./ci/build_changed_protos.sh origin/main
#
# Install
#

- name: install
run: |
pip install . --user
- name: install
run: |
pip install . --user
- name: pytest
run: |
. ./ci/pytest_unit.sh
- name: pytest
run: |
. ./ci/pytest_unit.sh
- name: perf
run: |
. ./ci/pytest_perf.sh
- name: perf
run: |
. ./ci/pytest_perf.sh

0 comments on commit 814e026

Please sign in to comment.