hi, I uses "ScaCap/[email protected]" after my maven test.
but for some reason, the github actions for my repo always report "Parameter token or opts.auth is required" error.
i try put GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} into my yml, but github complain GITHUB_TOKEN is not allowed. :(
here is code snipper
- name: Build cxth-wasp without tests
run: mvn clean install -DskipTests=true -DskipIntegrationTests=true #skip all tests first to speed up the build process at the moment
- name: Run unit test against wasp
run: mvn test --fail-at-end
- name: Surefire Report
uses: ScaCap/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}