Skip to content

Commit

Permalink
Merge pull request #14 from HarlemSquirrel/bundle-update-20240219
Browse files Browse the repository at this point in the history
Container sanity check
  • Loading branch information
HarlemSquirrel authored Feb 27, 2024
2 parents d16836e + 166a6b6 commit b59d66c
Show file tree
Hide file tree
Showing 8 changed files with 233 additions and 144 deletions.
23 changes: 23 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/.bundle/
/.yardoc
/_yardoc/
/coverage/
/doc/
/pkg/
/spec/reports/
/tmp/

*.bundle
*.so
*.o
*.a
mkmf.log

# rspec failure tracking
.rspec_status

# Added by cargo
/target

# Built gems
*.gem
24 changes: 15 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,18 @@ jobs:
- '3.3'

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
rubygems: latest
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
rubygems: latest
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake
container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
docker build -f docker/Dockerfile -t tzf-testing .
Loading

0 comments on commit b59d66c

Please sign in to comment.