Skip to content

Bump golang.org/x/sys from 0.0.0-20211019181941-9d821ace8654 to 0.1.0 #63

Bump golang.org/x/sys from 0.0.0-20211019181941-9d821ace8654 to 0.1.0

Bump golang.org/x/sys from 0.0.0-20211019181941-9d821ace8654 to 0.1.0 #63

Workflow file for this run

name: Automated checks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
go:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: HTTP Server Action
uses: Eun/http-server-action@v1.0.3
with:
port: 8070
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage report
uses: codecov/codecov-action@v1.0.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
flags: unittests
docker:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag encarne:$(date +%s)