We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8879556 commit 6eb033eCopy full SHA for 6eb033e
1 file changed
.github/workflows/updates.yml
@@ -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
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
+ BRANCH_NAME: 'master'
0 commit comments