Browse Source

Add a CI stub to enable CI workflows on branches

bdk-0.11
Daniel Karzel 3 years ago
parent
commit
c0d504c83e
No known key found for this signature in database GPG Key ID: 30C3FC2E438ADB6E
  1. 15
      .github/workflows/ci.yml

15
.github/workflows/ci.yml

@ -0,0 +1,15 @@
name: CI
on:
pull_request:
push:
branches:
- 'staging'
- 'master'
jobs:
hello_world:
runs-on: ubuntu-latest
steps:
- name: print hello world
run: echo "hello world"
Loading…
Cancel
Save