Skip to content

add self test

add self test #19

Workflow file for this run

name: self-test
on:
push:
branches: [main, test-me-*]
tags: '*'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
env:
strategy:
matrix:
os: [ubuntu-latest] # [windows-latest, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: tree ./.github/
- uses: ./.github/actions/env/
with:
ref: main
# coverage:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/coverage/actions.yml
# with:
# ref: main
#
# tests:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/tests/actions.yml
# with:
# ref: main
#
# workflow-tests:
# 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:
# uses: ./.github/workflows/coverage.yml
# with:
# ref: main
#
# workflow-mypy:
# uses: ./.github/workflows/mypy.yml
# with:
# ref: main
#
# workflow-docs:
# uses: ./.github/workflows/docs.yml
# with:
# ref: main