Skip to content

Commit

Permalink
WIP: automatically trigger oqs-provider release-test
Browse files Browse the repository at this point in the history
  • Loading branch information
SWilson4 committed Jan 4, 2024
1 parent ed86578 commit f35d9fa
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release tests

on: # TODO: do we want to run this on pull request only? push only? need to have standardized release process
push:
branches: [ 'dev-**' ] # TODO: settle on prefix / suffix for release candidates
pull_request:
branches: [ 'dev-**' ]


jobs:

oqs-provider-release-test:
container:
image: openquantumsafe/ci-ubuntu-jammy:latest # TODO: use this or the focal container?
runs-on: ubuntu-latest
steps:
- name: Checkout oqs-provider
uses: actions/checkout@v2
with:
repository: open-quantum-safe/oqs-provider
- name: Checkout liboqs
uses: actions/checkout@v2
with:
path: liboqs
- name: Display everything
run: pwd && ls

0 comments on commit f35d9fa

Please sign in to comment.