diff --git a/.github/workflows/.pullrequest.yml.swp b/.github/workflows/.pullrequest.yml.swp new file mode 100644 index 00000000..22102de2 Binary files /dev/null and b/.github/workflows/.pullrequest.yml.swp differ diff --git a/.github/workflows/build-master.yml b/.github/workflows/build-master.yml new file mode 100644 index 00000000..d2981584 --- /dev/null +++ b/.github/workflows/build-master.yml @@ -0,0 +1,16 @@ +name: Build Status +permissions: + contents: read + pull-requests: read +on: + push: + branches: + - master +jobs: + build: + name: Build Status + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: 'Build OCF' + run: cd tests/build; make diff --git a/.github/workflows/build.yml b/.github/workflows/build-pr.yml similarity index 93% rename from .github/workflows/build.yml rename to .github/workflows/build-pr.yml index 02036008..07f037b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build-pr.yml @@ -1,4 +1,4 @@ -name: build test +name: Build test permissions: contents: read pull-requests: read