From 090d30a5e0d6273929410ce1e1df15b194752e65 Mon Sep 17 00:00:00 2001 From: miiu Date: Thu, 17 Sep 2026 12:09:49 +0300 Subject: [PATCH] extra checks --- .github/workflows/tests.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..6df963c --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,30 @@ +name: tests + +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.9", "3.11", "3.13"] + steps: + - name: Check out scripts + uses: actions/checkout@v4 + + - name: Clone mx-chain-go sibling checkout (tests drive it) + run: | + mkdir -p "$GITHUB_WORKSPACE/../../multiversx" + git clone --depth 1 https://github.com/multiversx/mx-chain-go.git \ + "$GITHUB_WORKSPACE/../../multiversx/mx-chain-go" + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Run tests + run: make test