-
Notifications
You must be signed in to change notification settings - Fork 37
74 lines (60 loc) · 1.96 KB
/
test.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.10"]
name: Python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: template
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Scaffold Python package
run: |
pip install --no-input cruft
cruft create --no-input --extra-context '{"package_name": "My Package", "python_version": "3.8", "docker_image":"radixai/python-gpu:$PYTHON_VERSION-cuda11.8", "with_fastapi_api": "1", "with_typer_cli": "1"}' ./template/
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install @devcontainers/cli
run: npm install --location=global @devcontainers/[email protected]
- name: Start Dev Container with Python ${{ matrix.python-version }}
env:
DOCKER_BUILDKIT: 1
run: |
git config --global init.defaultBranch main
git init
git checkout -b test
git add .
PYTHON_VERSION=${{ matrix.python-version }} devcontainer up --workspace-folder .
working-directory: ./my-package/
- name: Lint package
run: devcontainer exec --workspace-folder my-package poe lint
- name: Test package
run: devcontainer exec --workspace-folder my-package poe test
- name: Build ci Docker image
uses: docker/build-push-action@v3
with:
context: ./my-package/
target: ci
- name: Build app Docker image
uses: docker/build-push-action@v3
with:
build-args: |
SOURCE_BRANCH=${{ env.GITHUB_REF }}
SOURCE_COMMIT=${{ env.GITHUB_SHA }}
context: ./my-package/
target: app