Skip to content

Migration to lightning 2.0 / torch 2.0 #1385

Migration to lightning 2.0 / torch 2.0

Migration to lightning 2.0 / torch 2.0 #1385

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
push:
branches:
- main
paths-ignore:
- 'README.md'
jobs:
short_tests:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build OML
run: |
make docker_build RUNTIME=cpu
- name: Short Tests OML
run: |
make docker_all_tests RUNTIME=cpu WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} NEPTUNE_API_TOKEN=${{ secrets.NEPTUNE_API_TOKEN }}
all_tests:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build OML
run: |
make docker_build RUNTIME=cpu
- name: All Tests OML
run: |
make docker_all_tests RUNTIME=cpu WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} NEPTUNE_API_TOKEN=${{ secrets.NEPTUNE_API_TOKEN }}