From ece5f61f20a1826c1cd0200ca5636113b712912a Mon Sep 17 00:00:00 2001 From: Samuel Giddins Date: Tue, 18 Jul 2023 01:01:38 -0700 Subject: [PATCH] Replace travis with github actions --- .github/workflows/build.yml | 19 +++++++++++++++++++ .travis.yml | 8 -------- 2 files changed, 19 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/build.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..a1df597e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: Build +on: + pull_request: + push: + branches: + - master + +jobs: + build: + name: Build + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0 + - uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1 # v1.144.2 + with: + bundler-cache: true + ruby-version: 3.0.5 + - name: Build + run: bundle exec jekyll build diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b5e84893..00000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: ruby -rvm: - - 2.2 -sudo: false -script: "bundle exec jekyll build" -notifications: - email: - - drbrain@segment7.net