Skip to content

Add daily scheduled runs to build, lint, and test workflows #24

Add daily scheduled runs to build, lint, and test workflows

Add daily scheduled runs to build, lint, and test workflows #24

Workflow file for this run

name: Test GEP on different platforms
on:
push:
branches:
- main
paths:
- '**'
- '!*.md'
pull_request:
paths:
- '**'
- '!*.md'
schedule:
- cron: '0 1 * * *'
jobs:
tests:
strategy:
fail-fast: false
matrix:
images: [ubuntu22.04] # TODO: Add more targets here
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Docker Build ${{ matrix.images }}
run: docker compose build ${{ matrix.images }}
- name: Test on ${{ matrix.images }}
run: docker compose run ${{ matrix.images }} ./tests.sh