Files
backend/.github/workflows/build.yml
Michel Wilhelm f51e7c83c6
Some checks failed
Release Drafter / update_release_draft (push) Failing after 21s
Build / Build (push) Failing after 4m46s
Updating from master to main
2022-10-25 17:20:24 -03:00

18 lines
367 B
YAML

name: Build
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}