We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ff7813 commit 2444521Copy full SHA for 2444521
.github/workflows/main.yml
@@ -84,3 +84,19 @@ jobs:
84
85
- name: Run pytest
86
run: poetry run python -m pytest -p no:sugar -q tests/
87
+
88
+ - name: Get Plugin Version (poetry-plugin-export)
89
+ id: poetry-plugin-export-version
90
+ run: |
91
+ echo ::set-output name=version::$(\
92
+ poetry show poetry-plugin-export | grep version | cut -d : -f 2 | xargs)
93
94
+ - name: Checkout Plugin Source (poetry-plugin-export)
95
+ uses: actions/checkout@v2
96
+ with:
97
+ path: poetry-plugin-export
98
+ repository: python-poetry/poetry-plugin-export
99
+ ref: refs/tags/${{ steps.poetry-plugin-export-version.outputs.version }}
100
101
+ - name: Run pytest (poetry-plugin-export)
102
+ run: poetry run python -m pytest -p no:sugar -q poetry-plugin-export/tests/
0 commit comments