-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (32 loc) · 1.04 KB
/
build.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
name: build
on: [pull_request, push]
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build-all:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- run: |
docker build -f bin/all-py.Dockerfile \
--build-arg PYTHON_VERSION=${{ matrix.python-version }} \
--tag cogment_lab-all-docker .
- name: Start background services
run: docker run -d --name cogment_lab-test cogment_lab-all-docker /usr/local/bin/cogmentlab launch base
- name: Run tests
run: docker run cogment_lab-all-docker pytest tests/*
build-necessary:
runs-on:
ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
docker build -f bin/necessary-py.Dockerfile \
--build-arg PYTHON_VERSION='3.10' \
--tag cogment_lab-necessary-docker .
- name: Run tests
run: |
docker run cogment_lab-necessary-docker pytest tests