Skip to content

Load files as UTF-8 #224

Load files as UTF-8

Load files as UTF-8 #224

Workflow file for this run

name: Build and test
on:
workflow_dispatch:
push:
branches: ["main", "rc-*"]
pull_request:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# "3.10" must be a string; otherwise it is interpreted as 3.1.
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
pip install -e ".[dev,test]"
- name: Install
id: install
run: |
make install
- name: Run unit tests
if: steps.install.outcome == 'success' && (success() || failure())
run: |
make test
- name: pyright, flake8, black and isort
if: steps.install.outcome == 'success' && (success() || failure())
run: |
make check
deploy:
name: "Deploy to PyPI"
runs-on: ubuntu-latest
if: github.event_name == 'release'
needs: [build]
steps:
- uses: actions/checkout@v3
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev,test]"
- name: "Build Package"
run: |
make dist
- name: Run unit tests
run: |
make test
- name: pyright, flake8, black and isort
run: |
make check
# test deploy ----
- name: "Test Deploy to PyPI"
uses: pypa/gh-action-pypi-publish@release/v1
if: startsWith(github.event.release.name, 'TEST')
with:
user: __token__
password: ${{ secrets.PYPI_TEST_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
## prod deploy ----
- name: "Deploy to PyPI"
uses: pypa/gh-action-pypi-publish@release/v1
if: startsWith(github.event.release.name, 'shinylive')
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}