From 87009135bc2cc44316a65b2a3f2194125e73e549 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 7 Jul 2026 08:02:49 +0200 Subject: [PATCH] ci: pip install on macOS and Ubuntu --- .github/workflows/pip_install.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/pip_install.yml diff --git a/.github/workflows/pip_install.yml b/.github/workflows/pip_install.yml new file mode 100644 index 00000000..7df201c4 --- /dev/null +++ b/.github/workflows/pip_install.yml @@ -0,0 +1,29 @@ +name: pip_install +on: + push: + pull_request: + workflow_dispatch: +jobs: + pip_install: + strategy: + fail-fast: false + matrix: + os: [macos-26, ubuntu-26.04] + runs-on: ${{ matrix.os }} + steps: + - run: echo "${{ runner.os }} on ${{ runner.arch }}" + - if: runner.os == 'Linux' + run: | + sudo apt-get update + sudo apt search lua5.5 + sudo apt-get install --yes lua5.5 liblua5.5-dev + - if: runner.os == 'macOS' + run: | + brew install lua + - uses: actions/setup-python@v6 + with: + python-version: 3.x + - run: | + lua -v + python -V + pip install --editable lunatic-python@git+https://github.com/bastibe/lunatic-python