Skip to content

Commit

Permalink
Merge pull request #372 from ADI10HERO/ci-pipeline
Browse files Browse the repository at this point in the history
[Fixes #371] Add Github Actions CI pipeline
  • Loading branch information
davidbuniat committed Feb 19, 2021
2 parents 143139a + a869971 commit b0b0ba1
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
96 changes: 96 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
name: package

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
test:
name: Python ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- 3.6
- 3.7
- 3.8
# - 3.9
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Install Hub
run: |
pip install -e .
- name: Lint with black
run: |
black --version
black --check .
# - name: Test with pytest and generate coverage report
# run: |
# pytest --cov=hub --cov-report=html hub
# - name: Codecov
# uses: codecov/codecov-action@v1.0.15


test_with_optional:
name: Python ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (with optional dependencies)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- 3.6
- 3.7
- 3.8
# - 3.9
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -r requirements-optional.txt
- name: Install Hub
run: |
pip install -e .
- name: Lint with black
run: |
black --version
black --check .
# - name: Test with pytest and generate coverage report
# run: |
# pytest --cov=hub --cov-report=html hub
# - name: Codecov
# uses: codecov/codecov-action@v1.0.15
1 change: 1 addition & 0 deletions requirements-optional.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ ray>=1.0
transformers>=3.5.1
dask[complete]>=2.30
tensorflow_datasets
ray==1.0.0

0 comments on commit b0b0ba1

Please sign in to comment.