-
Notifications
You must be signed in to change notification settings - Fork 8
32 lines (32 loc) · 980 Bytes
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Build image
run: docker-compose build
- name: Run plugin
run: docker-compose up
- name: Extract coverage data
run: |
docker create --name test quay.io/arcalot/arcaflow-plugin-template-python:latest
docker cp test:/htmlcov .
docker rm test
- name: Publish coverage report to job summary
run: |
pip install html2text
html2text --ignore-images --ignore-links -b 0 htmlcov/index.html >> $GITHUB_STEP_SUMMARY
- name: Upload coverage results
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4
with:
name: coverage
path: htmlcov
if-no-files-found: error