Removing auto IDE changes from files, adding changes requested by Alvaro #8211
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: . 🔍 Testing | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
paths-ignore: | |
- README.md | |
jobs: | |
linter-linux: | |
uses: ./.github/workflows/component_linux_linter.yml | |
unit-test-linux: | |
uses: ./.github/workflows/component_linux_unit_test.yml | |
secrets: | |
gh_token: ${{secrets.GITHUB_TOKEN}} | |
harvest-test-linux: | |
uses: ./.github/workflows/component_linux_harvest_test.yml | |
linter-macos: | |
uses: ./.github/workflows/component_macos_linter.yml | |
unit-test-macos: | |
uses: ./.github/workflows/component_macos_unit_test.yml | |
harvest-test-macos: | |
uses: ./.github/workflows/component_macos_harvest_test.yml | |
linter-windows: | |
uses: ./.github/workflows/component_windows_linter.yml | |
unit-test-windows: | |
uses: ./.github/workflows/component_windows_unit_test.yml | |
proxy-tests-linux: | |
uses: ./.github/workflows/component_linux_proxy_test.yml | |
secrets: | |
DOCKER_HUB_ID: ${{secrets.OHAI_DOCKER_HUB_ID}} | |
DOCKER_HUB_PASSWORD: ${{secrets.OHAI_DOCKER_HUB_PASSWORD}} | |
build-container: | |
uses: ./.github/workflows/component_docker_build.yml | |
secrets: | |
DOCKER_HUB_ID: ${{secrets.OHAI_DOCKER_HUB_ID}} | |
DOCKER_HUB_PASSWORD: ${{secrets.OHAI_DOCKER_HUB_PASSWORD}} | |
with: | |
TAG: "0.0.0" # needed for goreleaser test builds | |
PUBLISH: false | |
test-build: | |
uses: ./.github/workflows/component_linux_build.yml | |
secrets: | |
DOCKER_HUB_ID: ${{secrets.OHAI_DOCKER_HUB_ID}} | |
DOCKER_HUB_PASSWORD: ${{secrets.OHAI_DOCKER_HUB_PASSWORD}} | |
with: | |
TAG: "0.0.0" # needed for goreleaser test builds |