Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/conclusion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: After Test

on:
workflow_run:
workflows:
- Test
types:
- completed
jobs:
deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.workflow_run.head_branch }}
- run: git branch
- name: Install deps
run: echo "::warning file=.gitignore,line=1,col=5::Missing semicolon"
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Test

on: push
jobs:
deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install deps
run: lein deps
# test:
# runs-on: ubuntu-latest
# needs: deps
# steps:
# - uses: actions/checkout@v2
# - name: Run tests
# run: lein test