We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b79761 commit a0f1242Copy full SHA for a0f1242
.bundle/config
@@ -0,0 +1,2 @@
1
+---
2
+BUNDLE_PATH: ".gems"
.github/workflows/main.yml
@@ -8,7 +8,7 @@ on:
8
pull_request:
9
10
jobs:
11
- build:
+ linux:
12
runs-on: ubuntu-latest
13
name: Ruby ${{ matrix.ruby-version }}
14
strategy:
@@ -22,5 +22,19 @@ jobs:
22
with:
23
ruby-version: ${{ matrix.ruby-version }}
24
bundler-cache: true
25
- - name: Run the default task
+ - name: Run tests (ubuntu)
26
run: bundle exec rake
27
+
28
+ hardenedbsd:
29
+ runs-on: ubuntu-latest
30
+ name: hardenedBSD
31
+ steps:
32
+ - uses: actions/checkout@v4
33
+ - name: Run tests (hardenedBSD)
34
+ uses: 0x1eef/hardenedbsd-vm@v1
35
+ with:
36
+ release: '16-CURRENT'
37
+ run: |
38
+ mdo -u root pkg-static install -y rubygem-bundler
39
+ bundle install
40
+ bundle exec rake
0 commit comments