-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (41 loc) · 1.09 KB
/
run_tests.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
# This workflow will install Poetry, install Python dependencies, run tests a single version of Python
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
services:
docker:
image: docker:26.1.3
options: --privileged
ports:
- 2375:2375
env:
DOCKER_TLS_CERTDIR: ""
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.3.0
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
python-version: 3.11
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "export PATH=\"$HOME/.local/bin:$PATH\"" >> $GITHUB_ENV
- name: Install dependencies
run: |
poetry install
- name: Run tests
env:
DOCKER_HOST: tcp://localhost:2375
run: |
poetry run pytest