Fixed version numbers

This commit is contained in:
EwenQuim
2024-06-04 18:14:22 +02:00
parent ccc9f26d2c
commit 1b3c0898a4
3 changed files with 15 additions and 13 deletions

View File

@@ -5,24 +5,23 @@ name: Go
on:
push:
branches: [ "master" ]
branches: ["master"]
pull_request:
branches: [ "master" ]
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Build
run: go build -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Test
run: go test -v ./...

View File

@@ -4,6 +4,9 @@
# Entropy
[![Go Reference](https://pkg.go.dev/badge/github.com/EwenQuim/entropy.svg)](https://pkg.go.dev/github.com/EwenQuim/entropy)
[![Go Report Card](https://goreportcard.com/badge/github.com/EwenQuim/entropy)](https://goreportcard.com/report/github.com/EwenQuim/entropy)
Entropy is a CLI tool that will **scan your codebase for high entropy lines**, which are often secrets.
## Installation

2
go.mod
View File

@@ -1,4 +1,4 @@
module entropy
module github.com/EwenQuim/entropy
go 1.22.3