Skip to content

Commit

Permalink
add workflows self tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnv1 committed Jan 25, 2024
1 parent 76a13e3 commit 027a96b
Showing 1 changed file with 40 additions and 2 deletions.
42 changes: 40 additions & 2 deletions .github/workflows/self-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,51 @@ jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: kornia/workflows/.github/actions/[email protected]
- uses: asottile/workflows/.github/actions/[email protected]
- uses: ./.github/actions/coverage/actions.yml
with:
ref: main

tests:
runs-on: ubuntu-latest
steps:
- uses: kornia/workflows/.github/actions/[email protected]
- uses: asottile/workflows/.github/actions/[email protected]
- uses: ./.github/actions/tests/actions.yml
with:
ref: main

workflow-tests:
runs-on: ubuntu-latest
steps:
- uses: asottile/workflows/.github/actions/[email protected]
- uses: ./.github/workflows/tests.yml
with:
os: ubuntu-latest
python-version: '["3.10", "3.11"]'
pytorch-version: '["2.0.0", "2.1.2"]'
pytorch-dtype: 'float32'
ref: main

workflow-coverage:
runs-on: ubuntu-latest
steps:
- uses: asottile/workflows/.github/actions/[email protected]
- uses: ./.github/workflows/coverage.yml
with:
ref: main

workflow-typing:
runs-on: ubuntu-latest
steps:
- uses: asottile/workflows/.github/actions/[email protected]
- uses: ./.github/workflows/typing.yml
with:
ref: main

workflow-docs:
runs-on: ubuntu-latest
steps:
- uses: asottile/workflows/.github/actions/[email protected]
- uses: ./.github/workflows/docs.yml
with:
ref: main

0 comments on commit 027a96b

Please sign in to comment.