Browse Source

Merge pull request #18 from comit-network/ci-stub

Add a CI stub to enable CI workflows on branches
bdk-0.11
Daniel Karzel 3 years ago
committed by GitHub
parent
commit
3704e55eb6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  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