mirror of
https://github.com/NohamR/papeer.git
synced 2026-07-10 10:24:17 +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
|