From bdb347a4014aafad31824ac61d1a31a490c459c3 Mon Sep 17 00:00:00 2001 From: Alex Riley Date: Sat, 11 Mar 2023 15:03:24 +0000 Subject: [PATCH] Tidy up unused CI files --- .github/workflows.yaml | 31 ------------------------------- .travis.yml | 13 ------------- 2 files changed, 44 deletions(-) delete mode 100644 .github/workflows.yaml delete mode 100644 .travis.yml diff --git a/.github/workflows.yaml b/.github/workflows.yaml deleted file mode 100644 index c2166f0..0000000 --- a/.github/workflows.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: rolling - -on: - push: - branches: [ $default-branch ] - pull_request: - branches: [ $default-branch ] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Test with pytest - run: | - pytest diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 75f869f..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -sudo: false -language: python -python: - - "3.6" - - "3.7" - - "3.8" - - "3.9" -install: - - pip install codecov pytest-cov - - pip install -r requirements.txt -script: pytest --cov=./ -after_success: - - codecov