Skip to content

Commit

Permalink
added workflow for integration testing
Browse files Browse the repository at this point in the history
  • Loading branch information
meetagrawal09 committed Sep 6, 2023
1 parent ce327b9 commit b442c86
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name : Integration Tests
on :
schedule:
- cron: '30 4 * * 1'
jobs:
test:
runs-on: ubuntu-latest

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

container:
image: pecan/depends:R4.1

steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Run tests
run: |
for FILE in modules/data.atmosphere/inst/integrationTests/*; Rscript $FILE;

0 comments on commit b442c86

Please sign in to comment.