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