mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 09:05:10 +00:00
24 lines
790 B
YAML
24 lines
790 B
YAML
on:
|
|
schedule:
|
|
# Daily test at 12:00 pm
|
|
- cron: "0 12 * * *"
|
|
|
|
jobs:
|
|
test_develop:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Install build dependencies
|
|
run: |
|
|
sudo apt update && sudo apt install curl w3m shellcheck -y
|
|
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
|
chmod +x /usr/local/bin/docker-compose
|
|
- name: Pull and test edge images
|
|
run: |
|
|
./tests/docker-test.sh
|