mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 16:04:37 +00:00
23 lines
484 B
YAML
23 lines
484 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
tox:
|
|
name: chatmail tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: run chatmaild tests
|
|
working-directory: chatmaild
|
|
run: pipx run tox
|
|
- name: run deploy-chatmail offline tests
|
|
working-directory: deploy-chatmail
|
|
run: pipx run tox
|
|
- name: run deploy-chatmail offline tests
|
|
working-directory: deploy-chatmail
|
|
run: pipx run tox
|
|
|