-
Notifications
You must be signed in to change notification settings - Fork 128
44 lines (40 loc) · 989 Bytes
/
build.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
name: charm-helpers CI
on:
push:
branches:
- master
- 'stable/**'
pull_request:
branches:
- master
- 'stable/**'
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
include:
- python-version: 3.6
env: pep8,py36
- python-version: 3.7
env: pep8,py37
- python-version: 3.8
env: pep8,py38
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install juju
run: |
sudo snap install juju --classic
- name: Install packages
run: |
sudo apt -qq update
sudo apt install --yes libapt-pkg-dev # For python-apt wheel build
sudo apt install --yes bzr
- name: Install tox
run: pip install tox
- name: Test
run: tox -c tox.ini -e ${{ matrix.env }}