From a77d917f4c94f545a26df3fefc5cf5952decc433 Mon Sep 17 00:00:00 2001 From: teesh3rt Date: Thu, 13 Mar 2025 20:36:29 +0200 Subject: [PATCH] feat: add github actions --- .github/workflows/test.yml | 11 +++++++++++ .gitignore | 1 + 2 files changed, 12 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..cc4fd3d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,11 @@ +name: GitHub Actions Demo +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: astral-sh/setup-uv@v5 + - run: "uv venv" + - run: "uv sync" + - run: "uv run pytest" diff --git a/.gitignore b/.gitignore index dce0971..0245e47 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ wheels/ !.gitignore !.python-version +!.github \ No newline at end of file