diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..27874ea --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +@runtian-zhou \ No newline at end of file diff --git a/.github/workflows/move_tests.yml b/.github/workflows/move_tests.yml new file mode 100644 index 0000000..dcf9546 --- /dev/null +++ b/.github/workflows/move_tests.yml @@ -0,0 +1,21 @@ +name: "Move Tests" +on: + pull_request: + push: + branches: + - main + +jobs: + intent-tests: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./intent-framework + steps: + - uses: actions/checkout@v3 + - name: Install Nix + uses: cachix/install-nix-action@v17 + with: + nix_path: nixpkgs=channel:nixpkgs-unstable + - name: Runs move tests. + run: nix-shell --command 'aptos move test --dev' \ No newline at end of file