From 4424788c2bada520830c4c4ad34782be30da41c3 Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Sun, 23 Oct 2022 12:57:41 +0200 Subject: [PATCH] Switch CI to GHA --- .github/bors.toml | 2 +- .github/workflows/dummy.yml | 18 ++++++++++++++++++ .travis.yml | 14 -------------- 3 files changed, 19 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/dummy.yml delete mode 100644 .travis.yml diff --git a/.github/bors.toml b/.github/bors.toml index f124f6c..e0cb304 100644 --- a/.github/bors.toml +++ b/.github/bors.toml @@ -1,4 +1,4 @@ block_labels = ["S-waiting-on-team"] delete_merged_branches = true required_approvals = 1 -status = ["continuous-integration/travis-ci/push"] \ No newline at end of file +status = ["dummy"] \ No newline at end of file diff --git a/.github/workflows/dummy.yml b/.github/workflows/dummy.yml new file mode 100644 index 0000000..7fd158c --- /dev/null +++ b/.github/workflows/dummy.yml @@ -0,0 +1,18 @@ +name: CI + +on: + push: + branches: + - master + - staging + - trying + pull_request: + branches: + - master + +jobs: + dummy: + runs-on: ubuntu-latest + steps: + - name: Succeed + run: true diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 5b916ca..0000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: rust - -script: - - true - -branches: - only: - - master - - staging - - trying - -notifications: - email: - on_success: never