-
Notifications
You must be signed in to change notification settings - Fork 37
68 lines (55 loc) · 1.95 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
name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12"]
project-type: ["app", "package"]
name: Python ${{ matrix.python-version }} ${{ matrix.project-type }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: template
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Scaffold Python project
run: |
pip install --no-input cruft
cruft create --no-input --extra-context '{"project_type": "${{ matrix.project-type }}", "project_name": "My Project", "python_version": "3.10", "__docker_image":"superlinear/python-gpu:$PYTHON_VERSION-cuda11.8", "with_fastapi_api": "1", "with_typer_cli": "1"}' ./template/
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 21
- name: Install @devcontainers/cli
run: npm install --location=global @devcontainers/[email protected]
- name: Start Dev Container with Python ${{ matrix.python-version }}
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-project/
- name: Lint project
run: devcontainer exec --workspace-folder my-project poe lint
- name: Test project
run: devcontainer exec --workspace-folder my-project poe test
- name: Build app Docker image
if: ${{ matrix.project-type == 'app' }}
uses: docker/build-push-action@v5
with:
build-args: |
SOURCE_BRANCH=${{ env.GITHUB_REF }}
SOURCE_COMMIT=${{ env.GITHUB_SHA }}
context: ./my-project/
target: app