-
-
Notifications
You must be signed in to change notification settings - Fork 75
37 lines (35 loc) · 1023 Bytes
/
ecosystem.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: Basic ecosystem tests
on: push
jobs:
build:
strategy:
matrix:
python-version:
- "3.10"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: "Install Python dependencies (pip)"
uses: "py-actions/py-dependency-install@v4"
with:
path: "requirements.txt"
- name: Cache eggs
uses: actions/cache@v4
with:
path: |
eggs
key: eggs-${{ matrix.python-version }}-${{ runner.os }}-${{ hashFiles('versions*.cfg') }}
restore-keys: |
eggs-${{ matrix.python-version }}-${{ runner.os }}-
eggs-${{ matrix.python-version }}-
- name: Run buildout
run: |
buildout -c ecosystem.cfg buildout:git-clone-depth=1
- name: Quickly run unit tests without any layers
run: |
bin/test -u