diff --git a/.github/workflows/semanticore.yml b/.github/workflows/semanticore.yml new file mode 100644 index 0000000..a80a9f4 --- /dev/null +++ b/.github/workflows/semanticore.yml @@ -0,0 +1,25 @@ +name: Semanticore + +on: + push: + branches: + - master +jobs: + semanticore: + runs-on: ubuntu-latest + strategy: + matrix: + go: [ '1.*' ] + name: Semanticore + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup Go + uses: actions/setup-go@v4 + with: + go-version: ${{ matrix.go }} + - name: Semanticore + run: go run github.com/aoepeople/semanticore@main + env: + SEMANTICORE_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file