mirror of
https://git.mills.io/prologic/zs
synced 2024-11-21 21:06:10 +03:00
27 lines
447 B
YAML
27 lines
447 B
YAML
|
---
|
||
|
|
||
|
name: 🧪 Test
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
services:
|
||
|
tile38:
|
||
|
image: tile38/tile38:1.32.2
|
||
|
ports:
|
||
|
- "9851:9851/tcp"
|
||
|
steps:
|
||
|
- name: Checkout Code
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Setup Go
|
||
|
uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version-file: 'go.mod'
|
||
|
- name: Run Tests
|
||
|
run: make test
|