Skip to content

Commit

Permalink
Merge pull request #15 from andyw8/andyw8/enable-ci-using-github-actions
Browse files Browse the repository at this point in the history
Enable CI using GitHub Actions
  • Loading branch information
jyruzicka committed Feb 11, 2024
2 parents 607aff8 + 8a5f929 commit a8d01b8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- run: bundle exec rspec
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ GEM
multi_xml (0.6.0)
nokogiri (1.16.0-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.0-x86_64-linux)
racc (~> 1.4)
racc (1.7.3)
rspec (3.12.0)
rspec-core (~> 3.12.0)
Expand All @@ -41,6 +43,7 @@ GEM

PLATFORMS
arm64-darwin-23
x86_64-linux

DEPENDENCIES
rspec
Expand Down

0 comments on commit a8d01b8

Please sign in to comment.