Skip to content

Commit 1d995b4

Browse files
committed
build: update workflow and standardize check name
1 parent c67d453 commit 1d995b4

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
branches: ['*']
2525

2626
jobs:
27-
test:
27+
matrix:
2828
name: "Run tests on Python ${{ matrix.python-version }}"
2929
runs-on: ubuntu-latest
3030
strategy:
@@ -46,3 +46,9 @@ jobs:
4646
run: |
4747
python3 -m nox --session "tests-${{ matrix.python-version }}"
4848
python3 -m nox -e distribution
49+
test:
50+
name: Wait for matrix to finish
51+
needs: [matrix]
52+
runs-on: ubuntu-latest
53+
steps:
54+
- run: echo "Test matrix finished"

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
Python Client for Google Maps Services
22
====================================
33

4-
[![Build Status](https://travis-ci.org/googlemaps/google-maps-services-python.svg?branch=master)](https://travis-ci.org/googlemaps/google-maps-services-python)
4+
![Test](https://github.com/googlemaps/google-maps-services-js/workflows/test/badge.svg)
5+
![Release](https://github.com/googlemaps/google-maps-services-js/workflows/release/badge.svg)
56
[![codecov](https://codecov.io/gh/googlemaps/google-maps-services-python/branch/master/graph/badge.svg)](https://codecov.io/gh/googlemaps/google-maps-services-python)
67
[![PyPI version](https://badge.fury.io/py/googlemaps.svg)](https://badge.fury.io/py/googlemaps)
78
![PyPI - Downloads](https://img.shields.io/pypi/dd/googlemaps)

0 commit comments

Comments
 (0)