Skip to content

Commit

Permalink
Merge pull request #235 from bdunne/initial_github_actions
Browse files Browse the repository at this point in the history
(cherry picked from commit f7ad87c)
  • Loading branch information
jrafanie authored and Fryguy committed Jan 25, 2022
1 parent 82af4a7 commit 64c31c3
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.6'
- '2.7'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
build:
steps:
- uses: actions/checkout@v2
- name: Set up environment
run: |
echo "TRAVIS_PULL_REQUEST=${{ github.base_ref == '' && 'false' || 'true' }}" >> $GITHUB_ENV
- name: Set up registry credentials
if: ${{ github.base_ref == '' }}
run: |
echo "REGISTRY_PASSWORD=${{ secrets.REGISTRY_PASSWORD }}" >> $GITHUB_ENV
echo "REGISTRY_USERNAME=${{ secrets.REGISTRY_USERNAME }}" >> $GITHUB_ENV
- name: Run container build script
run: bin/build_container_image
env:
TRAVIS_BRANCH: ${{ env.GITHUB_REF_NAME }}

0 comments on commit 64c31c3

Please sign in to comment.