-
Notifications
You must be signed in to change notification settings - Fork 54
39 lines (37 loc) · 932 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
---
name: Gazu CI
on: [push, pull_request]
jobs:
ci:
name: Test with different versions of Python 🐍
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- version: "2.7"
container: python:2.7.18-buster
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
if: matrix.version != '2.7'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
cache: pip
- name: Upgrade pip 📦
run: >-
python -m
pip install
--upgrade
pip
- name: Install packages 📦
run: >-
python -m
pip install
-r requirements.txt
- name: Run tests 🧪
run: >-
py.test