Skip to content

Commit

Permalink
Merge pull request #1 from piger/ci
Browse files Browse the repository at this point in the history
add CI configuration
  • Loading branch information
piger committed Dec 14, 2021
2 parents d4635a5 + 6ce69a8 commit d411189
Show file tree
Hide file tree
Showing 9 changed files with 626 additions and 246 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,26 @@
name: tests
on:
push:
branches:
- master
pull_request:

jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-20.04, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions poetry
- name: run tox
run: tox
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -4,4 +4,5 @@
/pip-wheel-metadata/
/.mypy_cache/
/docs/_build/
/.redo/
/.redo/
/venv/
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# 🦊 (Fox)

[![Build Status](https://travis-ci.org/piger/fox.svg?branch=master)](https://travis-ci.org/piger/fox)
![tests](https://github.com/piger/fox/actions/workflows/test.yml/badge.svg)
[![Documentation Status](https://readthedocs.org/projects/fox-py/badge/?version=latest)](https://fox-py.readthedocs.io/en/latest/?badge=latest)

🦊 (Fox) is an _experimental_ alternative implementation of _some_ of the
Expand Down

0 comments on commit d411189

Please sign in to comment.