Use docker auth #64
Workflow file for this run
This file contains 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: Pull Request | |
on: | |
pull_request: | |
branches: ['master'] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6 | |
7 | |
- name: Docker Information | |
run: | | |
echo -e "\n\033[0;34mDocker System Info \033[0m" | |
docker system info | |
echo -e "\n\033[0;34mDocker Containers \033[0m" | |
docker ps -a | |
shell: bash | |
- name: Build, Test and Sonar | |
uses: swisslife-oss/actions/pull-request@main | |
with: | |
sonar_token: ${{ secrets.SONAR_TOKEN }} | |
sonar_project_key: 'SwissLife-OSS_Squadron' | |
sonar_project_name: "squadron" | |
pr_number: ${{ github.event.pull_request.number }} | |
pr_source_branch: ${{ github.head_ref }} | |
pr_target_branch: ${{ github.base_ref }} | |
github_repository: ${{ github.repository }} | |
sonar_exclusions: ${{ vars.SONAR_EXCLUSIONS }} |