🌱 Add unit test on features.go #495
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: E2E Fixture Test | |
on: | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**' | |
- '.gitignore' | |
- 'hack/*.sh' | |
- 'LICENSE' | |
- 'SECURITY_CONTACTS' | |
- 'DCO' | |
- 'OWNERS' | |
permissions: {} | |
jobs: | |
test: | |
name: e2e test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Build BMO e2e Docker Image | |
env: | |
IMG: quay.io/metal3-io/baremetal-operator:e2e | |
run: make docker | |
- name: Set Up Environment and Run BMO e2e Tests | |
env: | |
E2E_CONF_FILE: ${{ github.workspace }}/test/e2e/config/fixture.yaml | |
USE_EXISTING_CLUSTER: "false" | |
GINKGO_NODES: 1 | |
run: make test-e2e |