David Gonzalez Martin 9514fa8740 Integrate CI
2024-06-30 22:09:36 +02:00

28 lines
422 B
YAML

name: CI
on:
pull_request:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
env:
TIMEOUT_MINUTES: 15
jobs:
build_and_test:
runs-on: ubuntu-24.04
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
set -ex
./compile.sh
- name: Test
run: |
set -ex
./build/nest