21 lines
292 B
YAML
21 lines
292 B
YAML
|
name: Worker
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
paths:
|
||
|
- .github/workflows/**
|
||
|
- worker/**
|
||
|
|
||
|
pull_request:
|
||
|
branches: [main]
|
||
|
paths:
|
||
|
- .github/workflows/**
|
||
|
- worker/**
|
||
|
|
||
|
jobs:
|
||
|
python:
|
||
|
uses: ./.github/workflows/_python.yml
|
||
|
with:
|
||
|
context: worker
|