Skip to content

Merge pull request #96 from Kohulan/development #64

Merge pull request #96 from Kohulan/development

Merge pull request #96 from Kohulan/development #64

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Error checking and testing
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install basic dependencies
run: |
python -m pip install --upgrade pip
- name: Test with tox
run: |
pip install -e .
pip install tox
tox
release-please:
runs-on: ubuntu-latest
needs: build
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: python
package-name: release-please-action
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
start-version: '2.3.0'