From 3303ddef0fb7b465a1e9a2289b2c88bda1bc2b39 Mon Sep 17 00:00:00 2001 From: Patrick Date: Thu, 13 Jul 2023 12:57:26 -0700 Subject: [PATCH] update default branch --- .github/workflows/coverage.yml | 27 --------------------------- .github/workflows/lint.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 3 files changed, 4 insertions(+), 31 deletions(-) delete mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index cc01052..0000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Lint (type checking, security, code quality, ruff) - -on: - push: - branches: - - "develop" - pull_request: - branches: - - "develop" - -jobs: - linting: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - with: - lfs: false - - - name: Set up Python 3.10 - uses: actions/setup-python@v4 - with: - python-version: 3.10.10 - - - name: Linting - run: | - pytest --cov=src/model --cov=src/preprocessor --cov=src/postprocessor --cov=src/pipeline --cov-branch --cov-report term-missing diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 63462f4..a44809a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,10 +3,10 @@ name: Lint (type checking, security, code quality, ruff) on: push: branches: - - "develop" + - "main" pull_request: branches: - - "develop" + - "main" jobs: linting: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8cd48bc..8aecf84 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,10 +3,10 @@ name: Run tests on: push: branches: - - "develop" + - "main" pull_request: branches: - - "develop" + - "main" jobs: unit-tests: