Skip to content

Commit

Permalink
Save build artifacts from github actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ifreund committed Feb 5, 2020
1 parent e228853 commit 0befed5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: checkout repository
uses: actions/checkout@v1
with:
fetch-depth: 10
- name: install dependencies
Expand All @@ -23,3 +24,9 @@ jobs:
run: make
- name: run tests
run: make check
- name: upload artifacts if failed
uses: actions/upload-artifact@v1
if: failure()
with:
name: cata_test
path: tests/cata_test

0 comments on commit 0befed5

Please sign in to comment.