Bump github.com/schollz/progressbar/v3 from 3.14.4 to 3.14.5 (#348) #62
This file contains 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 check on every push | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'Makefile' | |
- 'config.json' | |
branches: | |
- 'master' | |
jobs: | |
ci: | |
name: CI check and codecov on every push | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Setup necessary packages | |
run: | | |
sudo apt update && sudo apt install libvips-dev -y | |
- name: run test cases | |
run: make && make test | |
- name: Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage.txt | |
verbose: true |