From aefba5de7a9af6c86a8f4e32168b2eb7039f0ab6 Mon Sep 17 00:00:00 2001 From: Michael Chrisco Date: Tue, 31 Jan 2023 19:11:32 -0800 Subject: [PATCH 1/2] Add github actions to workflow --- .github/workflows/blank.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..d3eb70b --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,24 @@ +name: Ruby + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + test: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Ruby + uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108 + with: + ruby-version: '3.1' + - name: Install dependencies + run: gem install awesome_bot + - name: Verify all links are valid + run: awesome_bot --allow-redirect README.md + From c2523e4d34020f8d98ea77963dc76317e783fe2e Mon Sep 17 00:00:00 2001 From: Michael Chrisco Date: Tue, 31 Jan 2023 19:18:07 -0800 Subject: [PATCH 2/2] Removed circleci config and replace with GH Actions --- .circleci/config.yml | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index fb65bcf..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,9 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: circleci/ruby:latest - steps: - - checkout - - run: gem install awesome_bot - - run: awesome_bot --allow-redirect README.md