Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mutcher committed Sep 16, 2023
1 parent dea4340 commit 45e9976
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Unit testing

on:
push:
branches: [ 'master' ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
with:
ruby-version: '3.0'
- name: Install dependencies
run: bundle install
- name: Create artifact
run: gem build
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
name: '*.gem'

0 comments on commit 45e9976

Please sign in to comment.