mirror of
https://github.com/LeRoid-hub/Bookholder-API.git
synced 2025-01-31 10:44:56 +00:00
23 lines
409 B
YAML
23 lines
409 B
YAML
|
name: Test
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
services:
|
||
|
dind:
|
||
|
image: docker:23.0-rc-dind-rootless
|
||
|
ports:
|
||
|
- 2375:2375
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Set up Go
|
||
|
uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version: "1.22"
|
||
|
|
||
|
- name: Test with Docker
|
||
|
run: go test -v ./...
|