Skip to content

Delete .github/dependabot.yml #44

Delete .github/dependabot.yml

Delete .github/dependabot.yml #44

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Create release
on:
push:
branches: [ main ]
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run task test
- name: Run build tests
run: poetry run task test-build
- name: Semantic Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name github-actions
git config user.email [email protected]
poetry run task release