util: move isnilish function to util package #59
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: tob CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go-version: ['1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Go ${{ matrix.go-version }} | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Use Node 16 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 16 | |
| - name: Install Ubuntu dependecies | |
| run: bash ./scripts/install_ubuntu_deps | |
| - name: Install dashboard dependencies | |
| run: CI='' npm --prefix dashboard/ui/ install | |
| - name: Run packaging | |
| run: CI='' bash ./scripts/package.sh 0.0.0.dummy |