14 lines
164 B
YAML
14 lines
164 B
YAML
|
name: Image testing
|
||
|
|
||
|
on:
|
||
|
- push
|
||
|
|
||
|
jobs:
|
||
|
tests:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: testing
|
||
|
run: |
|
||
|
make test
|