Skip to content

Commit

Permalink
well that was an adventure
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekMaggio committed Apr 11, 2024
1 parent eea8efb commit 419bc5f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/performance-metrics-test-lint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow runs lint on pull requests that touch anything in the performance-metrics directory

name: 'Performance Metrics Test & Lint'
name: 'performance-metrics test & lint'

on:
pull_request:
Expand All @@ -17,7 +17,7 @@ defaults:

jobs:
lint:
name: 'performance-metrics lint'
name: 'performance-metrics test & lint'
timeout-minutes: 5
runs-on: 'ubuntu-latest'
steps:
Expand All @@ -31,7 +31,8 @@ jobs:
cache: 'pipenv'
cache-dependency-path: performance-metrics/Pipfile.lock

- uses: './.github/actions/python/setup'
- name: "Install Python deps"
uses: './.github/actions/python/setup'
with:
project: 'performance-metrics'

Expand All @@ -40,12 +41,12 @@ jobs:
working-directory: ./performance-metrics
run: make setup

- name: test
- name: Test
if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped'
working-directory: ./performance-metrics
run: make test

- name: lint
- name: Lint
if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped'
working-directory: ./performance-metrics
run: make lint

0 comments on commit 419bc5f

Please sign in to comment.