CI #401
This file contains hidden or 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: | |
| 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" |