Skip to content

Commit

Permalink
ci: remove extra environment preparations
Browse files Browse the repository at this point in the history
prepare-[ce|ee]-test-env - fixed preparing test requirements.
static-code-check - removed extra steps what was did on previous steps.

Changes are needed to adjust the CI/CD settings to match
their step name. Which in turn allows you to properly manage the order
of actions during the build testing.
  • Loading branch information
dmyger committed Dec 28, 2024
1 parent 2248c99 commit 3cc50af
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/actions/prepare-ce-test-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ runs:
- name: Install test requirements
run: |
sudo apt -y install gdb
pip3 install -r test/requirements.txt
shell: bash
1 change: 1 addition & 0 deletions .github/actions/prepare-ee-test-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,5 @@ runs:
- name: Install test requirements
run: |
sudo apt -y install gdb
pip3 install -r test/requirements.txt
shell: bash
11 changes: 0 additions & 11 deletions .github/actions/static-code-check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,6 @@ description: "Performs static code checks."
runs:
using: "composite"
steps:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install tests requirements
run: |
pip3 install -r test/requirements.txt
shell: bash

- name: Log versions
run: |
go version
Expand Down Expand Up @@ -41,4 +31,3 @@ runs:
- name: Python Linter
run: python3 -m flake8 test
shell: bash

0 comments on commit 3cc50af

Please sign in to comment.