mirror of
https://github.com/TheLocehiliosan/yadm
synced 2024-10-27 20:34:27 +00:00
17 lines
320 B
YAML
17 lines
320 B
YAML
|
---
|
||
|
name: Tests
|
||
|
on: # yamllint disable-line rule:truthy
|
||
|
- push
|
||
|
- pull_request
|
||
|
- workflow_dispatch
|
||
|
jobs:
|
||
|
Tests:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Tests
|
||
|
run: >-
|
||
|
docker run -t --rm
|
||
|
-v "$PWD:/yadm:ro"
|
||
|
yadm/testbed:2020-07-08
|