Skip to content

CI

CI #403

Workflow file for this run

name: "CI"
on:
pull_request:
branches:
- "*"
push:
branches:
- "main"
- "master"
schedule:
- cron: "30 12 * * *"
jobs:
test:
name: "Test Linting and Testing"
runs-on: "ubuntu-24.04"
steps:
- uses: "actions/checkout@v4"
- name: "Linting and testing"
run: |
./run ci:test
# integration_test:
# name: "Test on Ubuntu"
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-24.04]
# # os: [ubuntu-24.04, ubuntu-20.04]
#
# steps:
# - name: "Checkout repository"
# uses: actions/checkout@v4
#
# - name: "Update APT and Install Dependencies"
# run: |
# sudo apt-get update && sudo apt-get install -y curl
#
# - name: "Run install script non-interactively"
# run: |
# yes | bash install && zsh -c ". ~/.config/zsh/.zprofile && . ~/.config/zsh/.zshrc; zsh -i"