Skip to content

Commit 0f0ce8d

Browse files
committed
Run tests
1 parent 5838b29 commit 0f0ce8d

File tree

1 file changed

+10
-20
lines changed

1 file changed

+10
-20
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: test gha
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88

99
permissions:
@@ -20,22 +20,12 @@ jobs:
2020
client-id: ${{ secrets.AZURE_CLIENT_ID }}
2121
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
2222
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
23-
24-
25-
# build:
26-
# runs-on: ubuntu-latest
27-
# name: Ruby ${{ matrix.ruby }}
28-
# strategy:
29-
# matrix:
30-
# ruby:
31-
# - '3.2.0'
32-
33-
# steps:
34-
# - uses: actions/checkout@v4
35-
# - name: Set up Ruby
36-
# uses: ruby/setup-ruby@v1
37-
# with:
38-
# ruby-version: ${{ matrix.ruby }}
39-
# bundler-cache: true
40-
# - name: Run the default task
41-
# run: bundle exec rake
23+
test:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: ruby/setup-ruby@v1
27+
with:
28+
ruby-version: "3.1.6"
29+
bundler-cache: false
30+
- name: Run the default task
31+
run: bundle exec rake test

0 commit comments

Comments
 (0)