endremborza/parquetranger

View on GitHub
.github/workflows/test.yml

Summary

Maintainability
Test Coverage
name: Python Test

on:
  pull_request:
    branches: 
      - main
  push:
    branches:
      - main

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-python@v4
      with:
        python-version: '3.10'
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip setuptools wheel
        pip install -e .[test]
    - name: Test
      run: |
        branb test
    - name: "Upload coverage to Codecov"
      uses: codecov/codecov-action@v3
      with:
        fail_ci_if_error: true