diff --git a/.github/workflows/common_checks.yaml b/.github/workflows/common_checks.yaml index c85daf63..faf6908f 100644 --- a/.github/workflows/common_checks.yaml +++ b/.github/workflows/common_checks.yaml @@ -40,9 +40,9 @@ jobs: - name: Lint run: | - poetry run adev lint -p . + poetry run adev lint -v - name: Tests run: | - poetry run adev test -p . + poetry run adev test -v diff --git a/.github/worlflows/common_checks.yaml b/.github/worlflows/common_checks.yaml deleted file mode 100644 index 821eb650..00000000 --- a/.github/worlflows/common_checks.yaml +++ /dev/null @@ -1,49 +0,0 @@ -➤ cat .github/workflows/common_check.yaml -# This is a basic workflow to help you get started with Actions - -name: Code Quality -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master, main ] - pull_request: - branches: [ master, main ] - - workflow_dispatch: - -jobs: - check: - strategy: - fail-fast: false - matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] - poetry-version: ["1.3.2"] - os: [ubuntu-20.04,] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install and configure Poetry - uses: snok/install-poetry@v1 - with: - version: ${{ matrix.poetry-version }} - virtualenvs-create: true - virtualenvs-in-project: false - virtualenvs-path: ~/my-custom-path - installer-parallel: true - - - name: Install - run: | - poetry install -v - - - name: Lint - run: | - poetry run adev lint -p . - - - name: Tests - run: | - poetry run adev test -p . -