forked from project-thea/thea-api
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 935 Bytes
/
ci.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
name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container: python:3.11.9
steps:
- uses: actions/checkout@v2
- name: Build
run: echo "build"
test:
needs: build
runs-on: ubuntu-latest
container: python:3.11.9
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11.9
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python --version
pip --version
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install tox
pip install -r requirements.txt
- name: Run tests
run: tox