Skip to content

Commit

Permalink
Merge pull request #11 from hueristiq/dev
Browse files Browse the repository at this point in the history
Development v0.4.0
  • Loading branch information
enenumxela authored Oct 20, 2024
2 parents 0e40c5d + 921d5b0 commit af270b3
Show file tree
Hide file tree
Showing 19 changed files with 552 additions and 348 deletions.
13 changes: 6 additions & 7 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
---
name: Bug report
name: Bug Report
about: Create a report to help us improve
labels: 'Type: Bug'
---


<!-- ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. -->

### `xstream` version:
<!-- We only accept issues that are reproducible on the latest version of `xstream`. -->
<!-- You can find the latest version of project at https://github.com/hueristiq/xstream/releases/ -->
### `xtee` version:
<!-- We only accept issues that are reproducible on the latest version of `xtee`. -->
<!-- You can find the latest version of project at https://github.com/hueristiq/xtee/releases/ -->

### Current Behavior:
<!-- A concise description of what you're experiencing. -->
Expand All @@ -20,9 +19,9 @@ labels: 'Type: Bug'
### Steps To Reproduce:
<!--
Example: steps to reproduce the behavior:
1. Run 'xstream ..'
1. Run 'xtee ..'
2. See error...
-->

### Anything else:
<!-- Links? References? Screnshots? Anything that will give us more contexstream about the issue that you are encountering! -->
<!-- Links? References? Screnshots? Anything that will give us more contextee about the issue that you are encountering! -->
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Feature request
about: Request feature to implement in this project
labels: 'Type: Enhancement'
name: Feature Request
about: Request a feature to implement in this project
labels: 'Type: Feature Request'
---

### Please describe your feature request:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-test.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 🔨 Build Test
name: 🔨 Build

on:
push:
Expand All @@ -17,7 +17,7 @@ on:

jobs:
build:
name: Build Test
name: Build
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-12]
Expand All @@ -27,7 +27,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21'
go-version: '>=1.23'
-
name: Checkout the repository
uses: actions/checkout@v4
Expand All @@ -37,9 +37,9 @@ jobs:
name: Go modules hygine
run: |
go clean -modcache
go mod tidy
make go-mod-tidy
working-directory: .
-
name: Go build
run: go build -v .
working-directory: ./cmd/xstream
working-directory: ./cmd/xtee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 🚨 CodeQL Analysis
name: 🚨 Analyze Code (CodeQL)

on:
push:
Expand All @@ -17,22 +17,22 @@ on:

jobs:
analyze:
name: CodeQL Analysis
name: Analyze Code (CodeQL)
strategy:
fail-fast: false
matrix:
language: [ 'go' ]
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'go' ]

steps:
-
name: Checkout repository
-
name: Checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint-test.yml → .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 💅 Lint Test
name: 💅 Lint

on:
push:
Expand All @@ -20,14 +20,14 @@ permissions:

jobs:
lint:
name: Lint Test
name: Lint
runs-on: ubuntu-latest
steps:
-
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21'
go-version: '>=1.23'
cache: false
-
name: Checkout the repository
Expand All @@ -36,8 +36,8 @@ jobs:
fetch-depth: 0
-
name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: v1.54.2
version: v1.61.0
args: --timeout 5m
working-directory: .
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21'
go-version: '>=1.23'
-
name: Checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
Expand All @@ -33,4 +33,4 @@ jobs:
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
DISCORD_WEBHOOK_ID: "${{ secrets.DISCORD_WEBHOOK_ID }}"
DISCORD_WEBHOOK_TOKEN: "${{ secrets.DISCORD_WEBHOOK_TOKEN }}"
DISCORD_WEBHOOK_TOKEN: "${{ secrets.DISCORD_WEBHOOK_TOKEN }}"
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# Executable

bin
Loading

0 comments on commit af270b3

Please sign in to comment.