Skip to content

Bump github.com/gabriel-vasile/mimetype from 1.4.4 to 1.4.5 #129

Bump github.com/gabriel-vasile/mimetype from 1.4.4 to 1.4.5

Bump github.com/gabriel-vasile/mimetype from 1.4.4 to 1.4.5 #129

Workflow file for this run

---
name: CI
on:
pull_request:
branches:
- master
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
workflow_call:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
#os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit
- name: Prepare OS
id: podman_install
run: |
sudo apt update -qqy
sudo apt install -qqy podman
systemctl --user start podman
echo "DOCKER_HOST=unix:///run/user/$UID/podman/podman.sock" >> "$GITHUB_ENV"
- name: Prepare Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: '1.22.3'
check_latest: false
- name: Checkout codebase
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Perform lint checks
run: |
go install golang.org/x/lint/golint@v0.0.0-20210508222113-6edffad5e616
make lint
- name: Perform format checks
run: make simplify
- name: Perform vet checks
run: make vet
- name: Run test suite
run: make test
...