owncast/.github/workflows/automated-end-to-end-api.yaml

43 lines
880 B
YAML
Raw Normal View History

name: Automated API tests
on:
push:
paths-ignore:
2022-09-05 02:41:02 +03:00
- 'web/**'
2022-10-13 01:34:35 +03:00
pull_request:
paths-ignore:
- 'web/**'
2022-10-13 01:34:35 +03:00
jobs:
2022-09-05 02:41:02 +03:00
test:
runs-on: ubuntu-latest
steps:
2022-11-24 02:06:51 +03:00
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
2022-09-05 02:41:02 +03:00
- uses: earthly/actions-setup@v1
with:
2022-09-05 02:41:02 +03:00
version: 'latest' # or pin to an specific version, e.g. "v0.6.10"
- name: Earthly version
run: earthly --version
2022-09-05 02:41:02 +03:00
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2
with:
image: tonistiigi/binfmt:latest
platforms: all
- uses: actions/checkout@v3
- name: Run API tests
2022-11-22 23:56:03 +03:00
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: earthly +api-tests