Allow SetCurrent and SetRamping to a version that has never seen poll… #628
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: Continuous Integration | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Print build information | |
| run: 'echo head_ref: "$GITHUB_HEAD_REF", ref: "$GITHUB_REF"' | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install protoc | |
| uses: arduino/setup-protoc@v3 | |
| with: | |
| # TODO: Upgrade proto once https://github.com/arduino/setup-protoc/issues/99 is fixed | |
| version: '23.x' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/setup-go@v2 | |
| with: | |
| go-version: "1.22" | |
| - name: Check | |
| run: make check test |