SeaUtils/.forgejo/workflows/actions.yaml

71 lines
1.7 KiB
YAML
Raw Normal View History

2024-08-14 04:12:51 -04:00
name: Actions
on:
push:
2024-12-30 10:21:00 -05:00
pull_request:
workflow_dispatch:
2024-08-14 04:12:51 -04:00
jobs:
2024-12-30 10:21:00 -05:00
build:
name: Build
2024-08-14 04:12:51 -04:00
runs-on: docker
2024-12-30 10:21:00 -05:00
container: www.coastalcommits.com/cswimr/actions:uv
2024-08-14 04:12:51 -04:00
steps:
- name: Checkout
2024-12-30 10:21:00 -05:00
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.ref }}
- name: Install python
run: uv python install 3.11
2024-08-14 04:12:51 -04:00
- name: Install dependencies
2024-12-30 10:21:00 -05:00
run: uv sync --no-dev
2024-08-14 04:12:51 -04:00
- name: Build the package
2024-12-30 10:21:00 -05:00
run: uv build
2024-08-14 04:12:51 -04:00
- name: Upload the package
uses: actions/upload-artifact@v3
with:
name: seautils
path: ./dist/*
- name: Publish to CoastalCommits
if: startsWith(github.ref, 'refs/tags/')
uses: actions/pypi-publish@v1.8.14
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.COASTALCOMMITSTOKEN }}
repository_url: https://www.coastalcommits.com/api/packages/${{ github.repository_owner }}/pypi
2024-12-30 10:21:00 -05:00
- name: Publish to PyPi
if: startsWith(github.ref, 'refs/tags/')
uses: actions/pypi-publish@v1.8.14
with:
password: ${{ secrets.PYPI_API_TOKEN }}
2024-08-14 04:12:51 -04:00
2024-12-30 10:21:00 -05:00
lint:
name: Lint with Ruff & Pylint
2024-08-14 04:12:51 -04:00
runs-on: docker
2024-12-30 10:21:00 -05:00
container: www.coastalcommits.com/cswimr/actions:uv
2024-08-14 04:12:51 -04:00
steps:
- name: Checkout
2024-12-30 10:21:00 -05:00
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install python
run: uv python install 3.11
2024-08-14 04:12:51 -04:00
- name: Install dependencies
2024-12-30 10:21:00 -05:00
run: uv sync
2024-08-14 04:12:51 -04:00
- name: Analysing code with Ruff
2024-12-30 10:21:00 -05:00
run: uv run ruff check $(git ls-files '*.py')
2024-08-14 04:12:51 -04:00
continue-on-error: true
- name: Analysing code with Pylint
2024-12-30 10:21:00 -05:00
run: uv run pylint $(git ls-files '*.py')
continue-on-error: true