diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..563d605 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: build + +on: [push] + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macOS-latest] + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v1 + - uses: xmake-io/github-action-setup-xmake@v1 + with: + xmake-version: latest + - name: build + run: xmake -y -vD diff --git a/README.md b/README.md index fd00ae6..b1dc61a 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,8 @@