Initial commit
This commit is contained in:
commit
3ab2101fff
5 changed files with 105 additions and 0 deletions
18
.github/workflows/ci.yml
vendored
Normal file
18
.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# This action continuously checks all pushes and Pull requests
|
||||
# for validity, integrity and bugs in datafiles.
|
||||
# For details, visit https://github.com/BSData/check-datafiles
|
||||
name: CI
|
||||
on: [ push, pull_request ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- uses: BSData/check-datafiles@v1
|
||||
id: check
|
||||
|
||||
- uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: artifact
|
||||
path: ${{ steps.check.outputs.staging-path }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue