Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit d020503

Browse files
author
Zak Zajac
committed
initial conversion from travis
1 parent ebb6dcb commit d020503

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: python-json-logger build
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
python: [pypy3, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10]
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v2
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install tox tox-gh-actions
27+
28+
- name: Text with tox
29+
run: tox

0 commit comments

Comments
 (0)