Skip to content

Commit

Permalink
Remove flake8 step. (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: jzazo <[email protected]>
  • Loading branch information
jzazo and jzazo authored Jan 3, 2024
1 parent 6be50ed commit 1131e83
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- oneml-pipelines
- oneml-processors
- oneml-habitats
runs-on: [ "self-hosted", "1ES.Pool=oneml-test-300" ]
runs-on: ["self-hosted", "1ES.Pool=oneml-test-300"]
name: "test: ${{ matrix.component }}"
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -69,11 +69,11 @@ jobs:
echo package-version=$VERSION >> $GITHUB_OUTPUT
echo package-name=$PKG_NAME >> $GITHUB_OUTPUT
echo package-wheel=$PKG_WHEEL >> $GITHUB_OUTPUT
- name: flake8
run: |
docker run \
-v $PWD/.tmp:/opt/oneml/.tmp \
immunodata.azurecr.io/oneml/${{ matrix.component }}:local poetry run flake8
# - name: flake8
# run: |
# docker run \
# -v $PWD/.tmp:/opt/oneml/.tmp \
# immunodata.azurecr.io/oneml/${{ matrix.component }}:local poetry run flake8
- name: mypy
run: |
docker run \
Expand All @@ -97,15 +97,15 @@ jobs:
with:
files: .tmp/${{ matrix.component }}/reports/pytest-junit.xml
check_name: "Test Results: ${{ matrix.component }}"
- name: 'upload-artifacts'
- name: "upload-artifacts"
uses: actions/upload-artifact@v3
with:
name: "wheels"
path: "wheels/${{ steps.package-info.outputs.package-wheel }}"
publish-artifacts:
if: "${{ inputs.publish-wheels }}"
needs: test-components
runs-on: [ "self-hosted", "1ES.Pool=oneml-test-300" ]
runs-on: ["self-hosted", "1ES.Pool=oneml-test-300"]
name: "push-artifacts"
steps:
- id: "authenticate"
Expand Down

0 comments on commit 1131e83

Please sign in to comment.