Skip to content

ui/ops: upgrade to Vue3, Vuetify3, vue-router4 and other required updates #634

ui/ops: upgrade to Vue3, Vuetify3, vue-router4 and other required updates

ui/ops: upgrade to Vue3, Vuetify3, vue-router4 and other required updates #634

Workflow file for this run

name: Go Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-all:
runs-on: ubuntu-latest
env:
GOPRIVATE: github.com/smart-core-os/*,github.com/vanti-dev/*
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
cache: true
go-version: '^1.22.5'
- name: Private repo auth
run: |
git config --global url."https://${{ secrets.GO_MOD_TOKEN }}:x-oauth-basic@github.com/smart-core-os".insteadOf "https://github.com/smart-core-os"
git config --global url."https://${{ secrets.GO_MOD_TOKEN }}:x-oauth-basic@github.com/vanti-dev".insteadOf "https://github.com/vanti-dev"
- name: Test
run: go test ./...
- name: Test short tests under race detector
run: go test -short -race ./...