Bump github.com/spf13/viper from 1.16.0 to 1.18.0 #65
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: BDD tests | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
jobs: | |
bdd: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
go-version: | |
- "1.18" | |
name: BDD for Go ${{ matrix.go-version}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Build project | |
run: make build | |
- name: Retrieve Docker compose file | |
run: wget -O docker-compose.yml https://raw.githubusercontent.com/RedHatInsights/insights-behavioral-spec/main/docker-compose.yml | |
- name: Retrieve BDD runner | |
run: wget -O bdd_runner.sh https://raw.githubusercontent.com/RedHatInsights/insights-behavioral-spec/main/run_in_docker.sh && chmod +x bdd_runner.sh | |
- name: Run BDD | |
run: ./bdd_runner.sh notification-service-tests . |