Skip to content

Update ro.yml

Update ro.yml #23

Workflow file for this run

name: Go (PR)
on:
pull_request_target:
branches: [ "v2" ]
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
container:
image: registry.vanillaos.org/vanillaos/pico:main
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Install build dependencies
run: |
apt-get update
apt-get install -y libbtrfs-dev libdevmapper-dev libgpgme-dev pkg-config build-essential
- name: Build
run: go build -o abrootv2
- name: Test
run: go test -v ./tests/..
sonar:
name: Sonar
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}