Removes AWS and Azure cloud resource detectors (#114) #15
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: OATS | |
on: | |
push: | |
branches: [ 'main*' ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
acceptance-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Check out oats | |
uses: actions/checkout@v4 | |
with: | |
repository: grafana/oats | |
path: oats | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
cache-dependency-path: oats/go.sum | |
- name: Run acceptance tests | |
run: ./scripts/run-oats-tests.sh | |
- name: upload log file | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: docker-compose.log | |
path: oats/yaml/build/**/output.log |