diff --git a/.github/workflows/apple.yml b/.github/workflows/apple.yml new file mode 100644 index 00000000000..4e323c3ada9 --- /dev/null +++ b/.github/workflows/apple.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: + - apple-stack + +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v4 + - name: deps + run: brew install automake libtool boost pkg-config libevent berkeley-db@4 + - name: build + run: | + ./autogen.sh + ./configure + make -j3 src/elementsd + - name: test + run: ./test/functional/feature_issuance.py