From d7d43ce9278b0ab340224c5fe1652b3080b0bab2 Mon Sep 17 00:00:00 2001 From: nicedlp Date: Wed, 6 Sep 2023 11:52:37 +0000 Subject: [PATCH] plop --- .github/workflows/ci.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 690d828..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Python package -on: - push: - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: "3.10" - cache: 'pip' # caching pip dependencies - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Install dev dependencies - run: pip install -r requirements_test.txt - - name: Run Linter - run: "Trainee should add command to run flake8" - - name: Run Vulture - run: "Trainee should add command to run vulture" - - name: Run tests - run: "Trainee should add command to run test" - -