Skip to content

feat: make unixtime unit configurable #31

feat: make unixtime unit configurable

feat: make unixtime unit configurable #31

Workflow file for this run

name: Go CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: macos-latest
strategy:
matrix:
go:
- '1.22'
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test code
run: go test -v ./...
- name: Create package
run: make
- name: Archive generated package
uses: actions/upload-artifact@v4
with:
name: alfred-unixtime-converter
path: UnixtimeConverter.alfredworkflow