-
Notifications
You must be signed in to change notification settings - Fork 14
36 lines (35 loc) · 975 Bytes
/
test.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
name: Run isort
on:
- push
- pull_request
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- id: imports-properly-sorted
uses: ./
with:
sortPaths: test/good.py
- name: assert-sorted-imports-return-no-output
run: |
output="${{steps.imports-properly-sorted.outputs.isort-result}}"
if ! [[ $output == "" ]]; then
exit 1
fi
- id: imports-improperly-sorted
uses: ./
with:
sortPaths: test/bad.py
configuration: --diff
- name: assert-improperly-sorted-imports-return-output
run: |
output="${{steps.imports-improperly-sorted.outputs.isort-result}}"
expected_substring="+import datetime"
if ! [[ $output == *"${expected_substring}"* ]]; then
exit 1
fi