diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..f6f0b73 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,5 @@ +Thank you for contributing to `meta-pqc`! + +By submitting this pull request, you confirm that: +- This contribution is your original work or you have the necessary rights to submit it. +- You agree to the terms outlined in the project's Contributor License Agreement (CLA). diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b99cc0d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI + +on: + push: + branches: [ "scarthgap" ] + pull_request: + branches: [ "scarthgap" ] + +# env: +# #BUILD_TYPE: Release + +jobs: + build: + runs-on: self-hosted + + steps: + - uses: actions/checkout@v4 + + - name: Build + run: kas-container build kas-pqc.yml + + - name: Test + working-directory: ${{github.workspace}} + run: echo Test +