mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-10 07:11:00 +00:00
18 lines
313 B
YAML
18 lines
313 B
YAML
|
name: Test
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
# Every day at 01:00 am
|
||
|
# Develop images are built at 12:00 pm, we want to use them
|
||
|
- cron: 0 1 * * *
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Test
|
||
|
run: ./tests/integration-test.sh
|