diff --git a/.github/workflows/test_ctypes_generation.yml b/.github/workflows/test_ctypes_generation.yml new file mode 100644 index 0000000..5ed4467 --- /dev/null +++ b/.github/workflows/test_ctypes_generation.yml @@ -0,0 +1,20 @@ +# V0.1 +name: Ctypes Generation + +on: [push, workflow_dispatch] + # Allows you to run this workflow manually from the Actions tab + +jobs: + build: + runs-on: windows-latest + timeout-minutes: 5 + strategy: + fail-fast: false + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - run: + py .\ctypes_generation\generate.py \ No newline at end of file