From 36fd5cb6b8faf5cc1994c2ac29c875b4096d276a Mon Sep 17 00:00:00 2001 From: astinz <28899947+astinz@users.noreply.github.com> Date: Sat, 22 Jun 2024 11:05:57 +0300 Subject: [PATCH] add ga test workflow ... --- .github/workflows/tests.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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 00000000..5538e07c --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,28 @@ +name: tests +run-name: Run tests +on: + push: + branches: + - master + +jobs: + tests: + runs-on: macos-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Update brew + run: brew update + + - name: Install aptos + run: brew install aptos + + - name: Start Aptos Local Testnet + run: aptos node run-local-testnet + + - name: Make gradlew executable + run: chmod +x ./gradlew + + - name: Run tests + run: ./gradlew test