chore(deps): bump github.com/mattn/go-sixel from 0.0.8 to 0.0.9 #332
Workflow file for this run
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: test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Golang | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ">=1.20.0" | |
| - name: Run go vet | |
| run: go vet -v ./... | |
| - name: Run go test | |
| run: go test -v -race ./... |