Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NoureldinYosri committed Dec 6, 2024
1 parent d6908ef commit c3a72b8
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,48 +21,48 @@ jobs:
buid-and-test:
runs-on: ubuntu-latest

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

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

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

- name: Install Dependencies
run: |
pip install -r dev_tools/dev.env.txt
- 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: format
run: |
black --exclude tunits/proto/.* --check .
- name: lint
run: ci/pylint_all.sh
- name: shellcheck
run: ci/shellcheck.sh

- name: Check modified protos
run: ci/build_changed_protos.sh origin/main
- name: format
run: |
black --exclude tunits/proto/.* --check .
#
# Install
#
- name: lint
run: ci/pylint_all.sh

- name: install
run: |
pip install . --user
- name: Check modified protos
run: ci/build_changed_protos.sh origin/main

#
# Install
#

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

- name: perf
run: ci/pytest_perf.sh

0 comments on commit c3a72b8

Please sign in to comment.