mirror of
https://github.com/metabarcoding/obitools4.git
synced 2026-04-30 03:50:39 +00:00
083a92e13d
- Upgrade actions/setup-go from v2/v4 (depending on workflow) to latest stable version - Update all actions/checkout from v3/v4 (depending on workflow) to latest stable version - Clean up outdated go.sum entries for buger/jsonparser v1.1.x
20 lines
363 B
YAML
20 lines
363 B
YAML
name: "Run the obitools command test suite"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- V*
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.23'
|
|
- name: Checkout obitools4 project
|
|
uses: actions/checkout@v5
|
|
- name: Run tests
|
|
run: make githubtests
|