Skip to content

Commit

Permalink
Merge pull request #81 from UseFedora/chore/ENABLE-1210/add-base-ci
Browse files Browse the repository at this point in the history
[DARK] [ENABLE-1210] add initial ci
  • Loading branch information
mikekitzman authored Apr 12, 2024
2 parents b5a191c + 75ea797 commit 35de63c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run CI

on:
pull_request:
push:
branches:
- main

env:
GH_PACKAGE_USERNAME: ${{ secrets.GH_PACKAGE_USERNAME }}
GH_PACKAGE_TOKEN: ${{ secrets.GH_PACKAGE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


jobs:
ci:
runs-on: [ ubuntu-latest ]
steps:
- name: checkout repository
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7' # Not needed with a .ruby-version file
- run: |
bundle install

0 comments on commit 35de63c

Please sign in to comment.