SOF-7136: update esse version #173
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Testing and Publication from 'dev' | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-linter: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.8.6] | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Checkout actions repository | |
uses: actions/checkout@v4 | |
with: | |
repository: Exabyte-io/actions | |
token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
path: actions | |
- name: Run ruff linter | |
uses: ./actions/py/lint | |
with: | |
python-version: ${{ matrix.python-version }} | |
run-tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.8.6] | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Checkout actions repository | |
uses: actions/checkout@v4 | |
with: | |
repository: Exabyte-io/actions | |
token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
path: actions | |
- name: Run tests | |
uses: ./actions/py/test | |
with: | |
python-version: ${{ matrix.python-version }} | |
unit-test-directory: tests/unit | |
integration-test-directory: tests/integration | |
publish: | |
needs: [run-linter, run-tests] | |
runs-on: ubuntu-latest | |
if: github.ref_name == 'dev' | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Checkout actions repository | |
uses: actions/checkout@v4 | |
with: | |
repository: Exabyte-io/actions | |
token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
path: actions | |
- name: Publish release | |
uses: ./actions/py/publish | |
with: | |
python-version: 3.x | |
github-token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
pypi-username: ${{ secrets.PYPI_USERNAME }} | |
pypi-password: ${{ secrets.PYPI_PASSWORD }} |