mirror of
https://github.com/tests-always-included/mo.git
synced 2024-12-18 16:27:52 +00:00
81f9ec326d
Thank you yutachaos!
14 lines
254 B
YAML
14 lines
254 B
YAML
name: CI
|
|
on: [push]
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v1
|
|
- name: Run tests
|
|
run: ./run-tests
|
|
- name: Run against spec
|
|
run: ./run-spec
|