Skip to content

feat: Printing the url list to txt file with output-file #28

feat: Printing the url list to txt file with output-file

feat: Printing the url list to txt file with output-file #28

Workflow file for this run

on:
push:
tags:
- '*'
branches:
- master
pull_request:
types:
- opened
- synchronize
permissions:
contents: write
jobs:
tests:
name: CI Tests & Release
runs-on: ubuntu-latest
environment: CI
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.19'
- name: Install Dependencies
run: |
go install github.com/mattn/goveralls@latest
curl -sSfL https://github.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.50.1
- name: Build & Test
run: |
make build
go test -v -covermode=count -coverprofile=coverage.out ./...
$(go env GOPATH)/bin/golangci-lint run ./...
- name: Goveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
- name: Release Prep
run: |
git checkout -- go.mod go.sum
docker login -u=atomicptr -p="$DOCKER_ACCESS_TOKEN"
env:
DOCKER_ACCESS_TOKEN: ${{ secrets.DOCKER_ACCESS_TOKEN }}
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
- name: Release
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
if: ${{ startsWith(github.ref, 'refs/tags/v') }}