Skip to content

Commit

Permalink
fix: test v3
Browse files Browse the repository at this point in the history
  • Loading branch information
abatilo committed Jan 21, 2024
1 parent 7b6d33e commit ec2dc03
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,29 @@
name: test

on:
pull_request:
branches:
- main

jobs:
publish:
runs-on: ubuntu-20.04
permissions:
contents: "read"
id-token: "write"
pull-requests: "write"
env:
POETRY_VERSION: 1.5.0
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
- name: Setup poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ env.POETRY_VERSION }}
- run: |
poetry --help
poetry --version

0 comments on commit ec2dc03

Please sign in to comment.