From f6d7a589af36eb6e489ebdab436c90a943013769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9d=C3=A9ric=20Hurier=20=28Fmind=29?= Date: Thu, 22 Feb 2024 22:19:51 +0100 Subject: [PATCH] Test CI/CD --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..180d172 --- /dev/null +++ b/.github/workflows/main.yml @@ -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/ \ No newline at end of file