go-modfile-information

command module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 9, 2023 License: MIT Imports: 3 Imported by: 0

README

Fetch go mod information

Build Integration Test

Summary

This action will let you retrieve some information in your go.mod file and export it in github action variables. For now, only the go version and go module will be exported.

See the examples for how to use it

Inputs
Input Description Default value
modfile An example mandatory input go.mod
Outputs
Output Description
go_version Go version of the module
go_module Go module name

Examples

    ...
    - name: Get go mod info
      id: gomod
      uses: pawndev/go-modfile-information@v1
      with:
        modfile: go.mod # optional default to `go.mod`
    - name: Print go mod information
      run: |
        echo "${{ steps.gomod.outputs.go_version }}"
        echo "${{ steps.gomod.outputs.go_module }}"
Using the optional input
with:
  modfile: other-go.mod

Testing locally

Be sure to have act locally and available il your $PATH. And then you can make test to launch the project locally.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL