Skip to content

Commit

Permalink
add ga test workflow ...
Browse files Browse the repository at this point in the history
  • Loading branch information
astinz committed Jun 22, 2024
1 parent 6837718 commit 36fd5cb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 36fd5cb

Please sign in to comment.