Skip to content

Merge pull request #16 from google/v1.0.0 #18

Merge pull request #16 from google/v1.0.0

Merge pull request #16 from google/v1.0.0 #18

Workflow file for this run

name: Testing
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11']
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 coveralls
- name: Install package
run: |
pip install ".[tensorflow,dev]"
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-line-length=120 --statistics
- name: Static analysis
run: |
python3 -m pip install types-tabulate
mypy unisim/ --raise-exceptions
- name: Test with pytest
run: |
coverage run -m pytest tests/
- name: Upload coverage to Coveralls
if: ${{ github.ref == 'refs/heads/main' }}
run: |
coveralls -i --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: ${{ matrix.python-version }}
COVERALLS_PARALLEL: true
- name: Check black formatting
uses: psf/black@stable
with:
options: "--check --verbose --diff"
version: "22.10.0"
- name: Check isort
uses: isort/isort-action@master
coveralls:
name: Indicate completion to coveralls.io
needs: test
runs-on: ubuntu-latest
steps:
- name: Install dependencies
if: ${{ github.ref == 'refs/heads/main' }}
run: |
python -m pip install --upgrade pip
pip install coveralls
- name: Finished
if: ${{ github.ref == 'refs/heads/main' }}
run: |
coveralls -i --service=github --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}