-
Notifications
You must be signed in to change notification settings - Fork 336
41 lines (37 loc) · 930 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: Gsutil CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [pypy3, 3.8.x, 3.9.x, 3.10.x, 3.11.x, 3.12.x]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
env:
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
- name: Install dependencies
run: |
set -x
git submodule update --init --recursive
- name: Lint
if: ${{ matrix.python-version == 3.6 }}
run: |
set -x
pip install pylint
pip install yapf
test/run_pylint.sh
yapf -dr .
- name: Test
run: |
set -x
python gsutil version -l
python gsutil test -u