add github CI #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: integration | ||
on: | ||
push: | ||
branches: [ "scarthgap" ] | ||
pull_request: | ||
branches: [ "scarthgap" ] | ||
env: | ||
#BUILD_TYPE: Release | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt-get --no-install-recommends install -y python3 python3-pip docker.io | ||
- name: kas | ||
run: sudo pip3 install kas | ||
- name: Build | ||
run: kas build kas-pqc.yml | ||
- name: Test | ||
working-directory: ${{github.workspace}} | ||
run: echo Test | ||