-
Notifications
You must be signed in to change notification settings - Fork 7
44 lines (41 loc) · 1.04 KB
/
unittests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Python Unittests
on:
push:
branches:
- main
pull_request:
jobs:
unittest:
strategy:
matrix:
platform: [ubuntu-22.04]
fail-fast: false
runs-on: ${{ matrix.platform }}
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
file: Dockerfile.cpu
tags: |
ghcr.io/d4l3k/torchdrive:cpu
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Pytest
run: docker run --rm ghcr.io/d4l3k/torchdrive:cpu pytest -n auto