Skip to content

Commit 6eb033e

Browse files
committed
removing extra space
1 parent 8879556 commit 6eb033e

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/updates.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Updates
2+
3+
on:
4+
schedule:
5+
- cron: "0 12 * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Use ruby
16+
uses: ruby/setup-ruby@v1
17+
with:
18+
ruby-version: 2.6
19+
20+
- name: Update gemfile and install dependencies
21+
run: chmod +x ./updateGemfile.sh && ./updateGemfile.sh
22+
23+
- name: Run test
24+
run: bundle exec ruby simple_test_script.rb
25+
env:
26+
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }}
27+
28+
- uses: mikeal/publish-to-github-action@master
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
BRANCH_NAME: 'master'

0 commit comments

Comments
 (0)