From 460467bd0be55e92b3bfd0eb9a0eaed7642583b1 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Wed, 7 Aug 2024 22:42:23 -0700 Subject: [PATCH] Remove GitHub Workflows --- .github/workflows/lint-and-test.yaml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/lint-and-test.yaml diff --git a/.github/workflows/lint-and-test.yaml b/.github/workflows/lint-and-test.yaml deleted file mode 100644 index 6ae9701..0000000 --- a/.github/workflows/lint-and-test.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Shouldn't really be needed, what with the pre-commit setup (see `DEVELOPMENT.md`) - -# but, doesn't hurt! -name: 'Lint And Test' -on: - push: - -jobs: - lint_and_test: - name: 'Lint and Test' - runs-on: 'ubuntu-latest' - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v5 - with: - python-version: '3.x' - cache: 'pip' - - run: 'python3 -m pip install -r requirements.txt' - - run: 'python3 -m pip install -r requirements-dev.txt' - - run: 'ruff check .' - - run: 'black --check .' - - run: 'pytest .'