Cancel notification updates when feeder is not started #2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check build | |
| on: [push] | |
| jobs: | |
| check-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Configure private dependencies | |
| uses: extractions/netrc@v1 | |
| with: | |
| machine: github.com | |
| username: git | |
| password: ${{ secrets.ACCESS_TOKEN }} | |
| - name: Golang dependency | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: '1.21' | |
| - name: Run unit tests | |
| env: | |
| GOPRIVATE: github.com/Fantom-foundation | |
| run: go test -v ./... | |
| - name: Build | |
| run: make opera |