Skip to content

Commit

Permalink
add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
0xripleys committed Oct 11, 2024
1 parent f65473a commit ab1109d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Pull Request

on:
pull_request:
push:
branches: [mainnet, devel, add_ci]

jobs:
move-test:
runs-on: ubuntu-latest
container:
image: mysten/sui-tools:testnet
ports:
- 80
steps:
- name: Checkout repository
uses: actions/checkout@v2

# bugfix: install git
- name: install git
run: apt-get install -y git

- name: test
run: cd contracts && sui move test

0 comments on commit ab1109d

Please sign in to comment.