Skip to content

Commit

Permalink
workflow action on push
Browse files Browse the repository at this point in the history
  • Loading branch information
h-haaks committed Feb 8, 2024
1 parent a22bb22 commit db1ec42
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/adhoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: adhoc
on: push
concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true

env:
BEAKER_HYPERVISOR: docker

jobs:
acceptance:
defaults:
run:
working-directory: .
runs-on: ubuntu-20.04
env:
BUNDLE_WITHOUT: development:test:release
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
cache-version: 0
working-directory: .
- name: Run tests
run: bundle exec rake beaker
env:
BEAKER_SETFILE: ubuntu2004-64

0 comments on commit db1ec42

Please sign in to comment.