Skip to content

feat: Add worker that request tasks from scheduler and execute tasks #44

feat: Add worker that request tasks from scheduler and execute tasks

feat: Add worker that request tasks from scheduler and execute tasks #44

Workflow file for this run

name: "unit-tests"
on:
pull_request:
push:
schedule:
# Run daily at 00:15 UTC (the 15 is to avoid periods of high load)
- cron: "15 0 * * *"
workflow_dispatch:
permissions: {}
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
non-storage-unit-tests:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
with:
submodules: "recursive"
- uses: "actions/setup-python@v5"
with:
python-version: "3.10"
- name: "Install task"
run: "npm install -g @go-task/cli"
- name: "Log tool versions"
run: |-
md5sum --version
python --version
tar --version
task --version
- name: "Install project dependencies "
timeout-minutes: 10
run: "task deps:lib_install"
- run: "task test:non-storage-unit-tests"