diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml deleted file mode 100644 index d32034a..0000000 --- a/.github/workflows/unit.yml +++ /dev/null @@ -1,36 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Build - -# Controls when the workflow will run -on: - - push - - pull_request - - workflow_dispatch - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: [3.8] - - 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: pip install -r build_requirements.txt - - name: Test formatting - uses: psf/black@stable - - name: test with pytest - run: coverage run -m pytest --color=yes tests - - name: coverage - run: coverage report -m - - name: codecov - run: bash <(curl -s https://codecov.io/bash)