From f63eb52125bf1503a772d15c720f63c2012dfe0f Mon Sep 17 00:00:00 2001 From: Denis Novikov Date: Tue, 31 Oct 2023 11:56:02 +0300 Subject: [PATCH] Delete .github/workflows/check.yml --- .github/workflows/check.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/check.yml diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml deleted file mode 100644 index 9c2ef01..0000000 --- a/.github/workflows/check.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: ProjectCheck - -on: [push] - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.10", "3.11", "3.12"] - 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 poetry - poetry install - env: - POETRY_VIRTUALENVS_CREATE: false - - name: Test the code pytest - run: | - pytest . -s -v - - name: Analysing the code with Ruff - run: | - pip install ruff - ruff .