Skip to content

Commit

Permalink
Test CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
fmind committed Feb 22, 2024
1 parent aa2263b commit f6d7a58
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Main
on:
push:
branches:
- main
- '*'
concurrency:
group: main
cancel-in-progress: true
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
cache: "poetry"
- run: pipx install poetry
- run: poetry install
- run: inv checks
- run: inv docs
- run: inv packages
# - name: Deploy
# uses: JamesIves/github-pages-deploy-action@v4
# with:
# folder: docs/build/

0 comments on commit f6d7a58

Please sign in to comment.