Skip to content

Commit

Permalink
Merge pull request #419 from polystat/scheduled
Browse files Browse the repository at this point in the history
Added scheduled integration tests
  • Loading branch information
dours committed Oct 31, 2022
2 parents 5762ed0 + ca8b068 commit f5ee072
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/IntegrationTests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Integration Tests

on:
schedule:
- cron: '30 18 * * 1'

jobs:
Verify:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 14
uses: actions/setup-java@v2
with:
java-version: '14'
distribution: 'adopt'
- name: Set up Python 3.8.10
uses: actions/setup-python@v2
with:
python-version: '3.8.10'
- name: Run integration tests
run: mvn clean verify -B

0 comments on commit f5ee072

Please sign in to comment.