-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (36 loc) · 811 Bytes
/
Copy pathtests.yml
File metadata and controls
43 lines (36 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Tests
on:
push:
branches:
- main
- master
tags:
- 'v*'
pull_request:
branches:
- main
- master
workflow_dispatch:
workflow_call:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout audplexus
uses: actions/checkout@v5
with:
path: audplexus
- name: Checkout go-audible
uses: actions/checkout@v6
with:
repository: mstrhakr/go-audible
path: go-audible
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26'
cache-dependency-path: audplexus/go.sum
- name: Run tests
working-directory: audplexus
run: go test -short ./...