mirror of
https://github.com/NohamR/papeer.git
synced 2026-05-25 12:27:20 +00:00
16 lines
195 B
YAML
16 lines
195 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.go'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Test
|
|
run: make test
|