Skip to content

[+] bump shirou/gopsutil/v3 from 3.23.6 to 3.23.7 #253

[+] bump shirou/gopsutil/v3 from 3.23.6 to 3.23.7

[+] bump shirou/gopsutil/v3 from 3.23.6 to 3.23.7 #253

Workflow file for this run

name: Go Build & Test
on:
pull_request:
workflow_dispatch:
jobs:
test-postgresql-windows:
if: false # false to skip job during debug
name: Test on Windows
runs-on: windows-latest
steps:
# - name: Start PostgreSQL on Windows
# run: |
# $pgService = Get-Service -Name postgresql*
# Set-Service -InputObject $pgService -Status running -StartupType automatic
# Start-Process -FilePath "$env:PGBIN\pg_isready" -Wait -PassThru
# - name: Create scheduler user on Windows
# run: |
# & $env:PGBIN\psql --command="CREATE USER scheduler PASSWORD 'somestrong'" --command="\du"
# - name: Create timetable database
# run: |
# & $env:PGBIN\createdb --owner=scheduler timetable
# $env:PGPASSWORD = 'somestrong'
# & $env:PGBIN\psql --username=scheduler --host=localhost --list timetable
- name: Check out code
uses: actions/checkout@v3
- name: Set up Golang
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Test
run: |
cd src/webui
yarn build
cd ..
go build
go test -v -p 1 -parallel 1 -failfast ./...
test-postgresql-macos:
if: false # false to skip job during debug
name: Test on MacOS
runs-on: macos-latest
steps:
# - name: Start PostgreSQL on MacOS
# run: |
# brew services start postgresql
# echo "Check PostgreSQL service is running"
# i=10
# COMMAND='pg_isready'
# while [ $i -gt 0 ]; do
# echo "Check PostgreSQL service status"
# eval $COMMAND && break
# ((i--))
# if [ $i == 0 ]; then
# echo "PostgreSQL service not ready, all attempts exhausted"
# exit 1
# fi
# echo "PostgreSQL service not ready, wait 10 more sec, attempts left: $i"
# sleep 10
# done
# # Homebrew creates an account with the same name as the installing user, but no password
# - name: Create scheduler user
# run: |
# psql --command="CREATE USER scheduler PASSWORD 'somestrong'" --command="\du" postgres
# - name: Create timetable database
# run: |
# createdb --owner=scheduler timetable
# PGPASSWORD=somestrong psql --username=scheduler --host=localhost --list timetable
- name: Check out code
uses: actions/checkout@v3
- name: Set up Golang
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Test
run: |
cd src/webui
yarn build
cd ..
go build
go test -v -p 1 -parallel 1 -failfast ./...
test-postgresql-ubuntu:
if: true # false to skip job during debug
name: Test and Build on Ubuntu
runs-on: ubuntu-latest
steps:
# - name: Start PostgreSQL on Ubuntu
# run: |
# sudo systemctl start postgresql.service
# pg_isready
# - name: Create scheduler user
# run: |
# sudo -u postgres psql --command="CREATE USER scheduler PASSWORD 'somestrong'" --command="\du"
# - name: Create timetable database
# run: |
# sudo -u postgres createdb --owner=scheduler timetable
# PGPASSWORD=somestrong psql --username=scheduler --host=localhost --list timetable
- name: Check out code
uses: actions/checkout@v3
- name: Set up Golang
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Get dependencies
run: |
cd src
go mod download
go version
- name: Test
run: |
cd src/webui
yarn install && yarn build
cd ..
go build
go test -failfast -v -timeout=300s -p 1 -coverprofile=profile.cov ./...
- name: GolangCI-Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
working-directory: src
# - name: Convert coverage to lcov
# uses: jandelgado/[email protected]
# with:
# infile: profile.cov
# outfile: coverage.lcov
# - name: Coveralls
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# path-to-lcov: coverage.lcov
# - name: Run GoReleaser
# uses: goreleaser/goreleaser-action@v2
# with:
# version: latest
# args: release --snapshot --skip-publish --rm-dist
test-docker-images:
if: false # false to skip job during debug
name: Test Docker Image on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build Docker Image
shell: bash
run: |
./build-docker-daemon.sh
./build-docker.sh
# - name: Smoke Test Docker Image
# timeout-minutes: 10
# shell: bash
# run: |
# docker/test/smoke_test_docker_image.sh cybertec/pgwatch3:latest