From aa1d66c2baa6a963bff0814d0d4a8cf7b15f25c8 Mon Sep 17 00:00:00 2001 From: Jonathan Sick Date: Tue, 19 Jan 2021 11:55:05 -0500 Subject: [PATCH 1/2] Add null GitHub Actions workflow This will be useful for setting up branch protections to ensure the branch is up-to-date. However, hopefully we can add more useful linting in the future. --- .github/workflows/ci.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..5f85b22a --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,12 @@ +name: Empty check for branch protection + +on: + - push + - pull_request + +jobs: + + null_check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 From c40c64ff9fbb34b2955baf61c55a311fd6c1acb0 Mon Sep 17 00:00:00 2001 From: Jonathan Sick Date: Fri, 23 Jul 2021 10:55:57 -0400 Subject: [PATCH 2/2] Remove Travis configuration Travis use is deprecated in favour of GitHub Actions. --- .travis.yml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 97e4d7a4..00000000 --- a/.travis.yml +++ /dev/null @@ -1,12 +0,0 @@ -# This is currently a no-op Travis configuration so that the GitHub repo -# can get a Checks API callback to ensure that branches are up-to-date before -# merging. Eventually we could add static linting. -# -# The build itself is done by: -# https://ci.lsst.codes/blue/organizations/jenkins/sqre%2Finfra%2Fdocumenteer/activity - -language: python -python: - - "3.6" -script: - - "true"