Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #236 from Yelp/spatel/migrate_to_github_actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Semir Patel committed Jan 28, 2021
2 parents 150e761 + e4a0933 commit 8fb7630
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 38 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,23 @@
---
name: venv-update-ci
on: push
jobs:
tox:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
toxenv:
- lint
- py36
- py27
- pypy
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.6
- run: pip install tox==3.21.2
- run: pip install -r CI/requirements.txt
- run: sudo apt-get install -y pypy pypy-dev
- run: tox -e ${{ matrix.toxenv }}
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

5 changes: 3 additions & 2 deletions CI/requirements.txt
@@ -1,3 +1,4 @@
# minimal set of packages for travis to run our test suites
tox
# minimal set of packages for github actions to run our test suites
codecov
tox==3.21.2
virtualenv<20
2 changes: 0 additions & 2 deletions README.md
Expand Up @@ -4,8 +4,6 @@ Quickly and exactly synchronize a large python project's virtualenv with its
[requirements](https://pip.pypa.io/en/stable/user_guide/#requirements-files).

[![PyPI version](https://badge.fury.io/py/venv-update.svg)](https://pypi.python.org/pypi/venv-update)
[![Travis CI](https://img.shields.io/travis/Yelp/venv-update/master.svg?label=travis-ci)](https://travis-ci.org/Yelp/venv-update/branches)
[![Coverage](https://codecov.io/github/Yelp/venv-update/coverage.svg?branch=master)](https://codecov.io/github/Yelp/venv-update?branch=master)
[![Documentation](https://readthedocs.org/projects/venv-update/badge/?version=master)](http://venv-update.readthedocs.org/en/master/)


Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -7,7 +7,7 @@ skipsdist=True
# `changedir` ensures we run against the installed, rather than the working directory:
passenv =
# For codecov
CI TOXENV TRAVIS TRAVIS_*
CI TOXENV
PYTEST_OPTIONS
changedir =
{envtmpdir}
Expand Down

0 comments on commit 8fb7630

Please sign in to comment.