skip err log on os.IsNotExist (#330) #16
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.23.x] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - uses: actions/checkout@v3 | |
| - name: Go Lint Standard | |
| uses: golangci/golangci-lint-action@v3 | |
| with: | |
| version: v1.63 | |
| args: "--out-${NO_FUTURE}format colored-line-number --timeout=15m" | |
| - run: go vet ./... | |
| - run: go test ./... | |
| # Copied from .travis.yml but never migrated to github actions | |
| # - language: node_js | |
| # node_js: 10 | |
| # script: | |
| # - cd jirabot | |
| # - yarn | |
| # - yarn ci |