Skip to content

GitHub Actions for Python projects using poetry

License

Notifications You must be signed in to change notification settings

lenosi/actions-poetry

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

actions-poetry

GitHub Actions for Python projects using poetry with cache

license release GitHub release date

Getting started

Create your workflow

name: CI
on: pull_request

jobs:
  ci:
    strategy:
      fail-fast: false
      matrix:
        python-version: [ 3.9 ]
        os: [ ubuntu-latest ]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2
          -
      - uses: actions/setup-python@v2
        with:
          python-version: ${{ matrix.python-version }}

      - name: Install poetry
        uses: enkeys/actions-poetry@v1.0.0

      - name: View poetry --help
        run: poetry --help

License

MIT License - enkeys/actions-poetry

About

GitHub Actions for Python projects using poetry

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published