Skip to content

Commit

Permalink
Merge pull request #173 from visol-forks/ci/github-actions
Browse files Browse the repository at this point in the history
ci: Add basic GitHub Action for Ruby
  • Loading branch information
kirk-brown-ew authored Sep 7, 2023
2 parents 01e3ae3 + 973246e commit 30032d4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Ruby

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
with:
#bundler-cache: true
ruby-version: '3.1'
- name: Install dependencies
run: bundle install
- name: Run sitediff version
run: ./bin/sitediff version

0 comments on commit 30032d4

Please sign in to comment.