wip: Provide hooks to manage IMAP connection #277 #40
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, workflow_dispatch ] | |
jobs: | |
run_tests: | |
name: Run tests | |
if: ${{ !contains(github.event.head_commit.message, 'skip tests') }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Init runner | |
run: bash ./scripts/init_runner.sh ${{ github.job }} | |
- name: Setup workspace | |
env: | |
KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
run: bash ./scripts/setup_workspace.sh | |
- name: Run tests | |
env: | |
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
run: bash ./scripts/run_tests.sh -c -r ${{ github.job }} | |
additional_tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [ 16, 18, 20 ] | |
mongo: [ 5, 6, 7 ] | |
name: Additional tests | |
if: ${{ contains(github.event.head_commit.message, 'additional tests') }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Init runner | |
run: bash ./scripts/init_runner.sh ${{ github.job }} | |
- name: Setup workspace | |
env: | |
KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
run: bash ./scripts/setup_workspace.sh -n ${{ matrix.node }} | |
- name: Run tests | |
env: | |
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
run: bash ./scripts/run_tests.sh -n ${{ matrix.node }} -m ${{ matrix.mongo }} | |
build_app: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [ 20 ] | |
debian: [ 'bookworm' ] | |
name: Build app | |
if: ${{ !contains(github.event.head_commit.message, 'skip app') }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Init runner | |
run: bash ./scripts/init_runner.sh ${{ github.job }} | |
- name: Setup workspace | |
env: | |
KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
run: bash ./scripts/setup_workspace.sh | |
- name: Build app | |
env: | |
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
run: bash ./scripts/build_app.sh -n ${{ matrix.node }} -d ${{ matrix.debian }} -p -r ${{ github.job }} | |
build_docs: | |
name: Build docs | |
if: ${{ startsWith(github.event.head_commit.message, 'docs:') || contains(github.event.head_commit.message, 'build doc') }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Init runner | |
run: bash ./scripts/init_runner.sh ${{ github.job }} | |
- name: Setup workspace | |
env: | |
KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }} | |
run: bash ./scripts/setup_workspace.sh | |
- name: Build docs | |
env: | |
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }} | |
run: bash ./scripts/build_docs.sh -p -r ${{ github.job }} |