Skip to content

gitinterface: Add support for trees, commits, tags, and references #1945

gitinterface: Add support for trees, commits, tags, and references

gitinterface: Add support for trees, commits, tags, and references #1945

Workflow file for this run

name: tests
on:
push:
branches: ['main']
paths-ignore:
- "docs/*"
pull_request:
paths-ignore:
- "docs/*"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- name: Install Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
go-version: '1.22'
cache: true
- name: Test
run: go test -covermode atomic ./...
continue-on-error: true
- name: Debug
uses: mxschmitt/action-tmate@v3
if: matrix.os == 'windows-latest'
with:
limit-access-to-actor: true