forked from purcell/airspeed
-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (37 loc) · 958 Bytes
/
main.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
name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
bigdata-tests:
name: "Build and Test"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version:
- "3.11"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python_version }}'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libsasl2-dev
make install
# Note: currently required to import snapshot utils from localstack
# TODO remove once imports are better organized in localstack
. .venv/bin/activate; pip install localstack-core[runtime]
- name: Run tests
run: |
make lint
make test