CI #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' # Runs every Sunday at midnight | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y build-essential | |
- name: Run make all and wait for Sent | |
run: make wait-for-sent | |
working-directory: ./docker | |
- name: Archive all.txt logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
path: /quickstart/docker/all.txt |