File tree Expand file tree Collapse file tree 2 files changed +32
-26
lines changed
Expand file tree Collapse file tree 2 files changed +32
-26
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 99 paths :
1010 - " spec/smoke/*"
1111 - " .github/workflows/test-smoke.yml"
12- - " .github/actions/smoke-test/*"
1312
1413concurrency :
1514 group : ${{ github.workflow }}-${{ github.head_ref }}
3736 BW_VOICE_APPLICATION_ID : ${{ secrets.BW_VOICE_APPLICATION_ID }}
3837 BW_MESSAGING_APPLICATION_ID : ${{ secrets.BW_MESSAGING_APPLICATION_ID }}
3938 steps :
40- - name : Smoke Test
41- uses : ./.github/actions/smoke-test
39+ - name : Checkout
40+ uses : actions/checkout@v4
41+
42+ - name : Set up Ruby
43+ uses : ruby/setup-ruby@v1
44+ with :
45+ ruby-version : 3.3
46+
47+ - name : Install Packages and Test
48+ run : |
49+ bundle install
50+ rake smoke
51+ env :
52+ RUBY_VERSION : 3.3
53+ OPERATING_SYSTEM : ubuntu
54+ shell : bash
4255
4356 test_main_up :
4457 name : Smoke Test UP Account
4962 BW_VOICE_APPLICATION_ID : ${{ secrets.BW_UP_VOICE_APPLICATION_ID }}
5063 BW_MESSAGING_APPLICATION_ID : ${{ secrets.BW_UP_MESSAGING_APPLICATION_ID }}
5164 steps :
52- - name : Smoke Test
53- uses : ./.github/actions/smoke-test
65+ - name : Checkout
66+ uses : actions/checkout@v4
67+
68+ - name : Set up Ruby
69+ uses : ruby/setup-ruby@v1
70+ with :
71+ ruby-version : 3.3
72+
73+ - name : Install Packages and Test
74+ run : |
75+ bundle install
76+ rake smoke
77+ env :
78+ RUBY_VERSION : 3.3
79+ OPERATING_SYSTEM : ubuntu
80+ shell : bash
5481
5582 notify_for_failures :
5683 name : Notify for Failures
You can’t perform that action at this time.
0 commit comments