Add FIPS and strict patches #1
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: Check MicroK8s patches | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
patch: [strict, fips] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Apply patches | |
run: | | |
git am build-scripts/patches/${{ matrix.flavor }}/*.patch |