Skip to content
This repository was archived by the owner on Feb 17, 2021. It is now read-only.

Commit 7753f13

Browse files
author
staticdev
committed
#5 simple github testing workflow
1 parent 8188dde commit 7753f13

3 files changed

Lines changed: 25 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Tests
2+
on: push
3+
jobs:
4+
tests:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
python-version: ['3.7', '3.8']
9+
name: Python ${{ matrix.python-version }}
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-python@v1
13+
with:
14+
python-version: ${{ matrix.python-version }}
15+
architecture: x64
16+
- run: pip install nox==2019.11.9
17+
- run: pip install poetry==1.0.5
18+
- run: nox

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# toml-validator
22

3+
[![Tests](https://github.com/staticdev/toml-validator/workflows/Tests/badge.svg)](https://github.com/staticdev/toml-validator/actions?workflow=Tests)
4+
![PyPi](https://badge.fury.io/py/toml-validator.svg)
5+
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
6+
37
Simple TOML file validator using Python.
48

59
## Quickstart

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)