Files
mjhelper/.gitea/workflows/test.yaml
T
haopengzhan a0e8c69f34
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 48s
Test Go Action / use-go-action (push) Failing after 35s
Created gitea actions
2024-04-13 01:36:08 +00:00

17 lines
367 B
YAML

name: 'Test Go Action'
on: [push]
jobs:
use-go-action:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Use Go Action
id: "test"
run: "go test ./..."
- name: Print Output
run: echo 'output time is ${{ steps.test.outputs.time }}'