# This workflow will perform a test whenever there # is some change in code done to ensure that the changes # are not buggy and we are getting the desired output. name: Check Case Normalization on: push: pull_request: workflow_dispatch: schedule: - cron: '0 0 * * *' # every day at midnight env: IMAGE_NAME: ImageCaseTest IMAGE_TAGS: v1 TagCaseTest jobs: build: name: Build image using Buildah runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: install_latest: [ true, false ] steps: # Checkout buildah action github repository - name: Checkout Buildah action uses: actions/checkout@v4 with: path: "buildah-build" - name: Install latest buildah if: matrix.install_latest run: | bash buildah-build/.github/install_latest_buildah.sh - name: Create Dockerfile run: | cat > Containerfile<