-
Notifications
You must be signed in to change notification settings - Fork 178
72 lines (60 loc) · 1.77 KB
/
hardware-testing.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This workflow runs test and lint on branch pushes that touch the
# hardware-testing project or its dependencies
name: 'hardware-testing testing lint/test'
on:
# Most of the time, we run on pull requests, which lets us handle external PRs
push:
paths:
- 'Makefile'
- 'hardware-testing/**'
- '.github/workflows/hardware-testing.yaml'
- '.github/actions/python/**'
branches:
- 'edge'
- 'release'
tags-ignore:
- '*'
pull_request:
paths:
- 'Makefile'
- 'hardware-testing/**'
- '.github/workflows/hardware-testing.yaml'
- '.github/actions/python/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.ref_name != 'edge' || github.run_id}}-${{ github.ref_type != 'tag' || github.run_id }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
lint-test:
name: 'hardware--testing package linting and tests'
timeout-minutes: 20
runs-on: 'ubuntu-20.04'
steps:
- name: Checkout opentrons repo
uses: 'actions/checkout@v3'
with:
fetch-depth: 0
- name: Setup Node
uses: 'actions/setup-node@v3'
with:
node-version: '12'
- name: Setup Python
uses: 'actions/setup-python@v4'
with:
python-version: '3.10'
- name: Setup Project
uses: './.github/actions/python/setup'
with:
project: 'hardware-testing'
- name: Lint
run: make -C hardware-testing lint
- name: Test
run: make -C hardware-testing test-cov
- name: Coverage
uses: 'codecov/codecov-action@v3'
with:
files: ./hardware-testing/coverage.xml
flags: hardware-testing