Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI

on:
pull_request:
branches: ["**"]
push:
branches-ignore:
- master

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
name: Install · Vet · Test · Build
runs-on: windows-latest
defaults:
run:
working-directory: app
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version: "1.22"
cache-dependency-path: app/go.sum

- name: Download modules
run: go mod download

- name: Vet
env:
CGO_ENABLED: "1"
run: go vet ./...

- name: Test
env:
CGO_ENABLED: "1"
run: go test -v -count=1 ./...

- name: Build
env:
CGO_ENABLED: "1"
run: go build -v ./...
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 0.3.0 (Better Workspaces)
- Last opened workspace
- Search Workspace List
- Export/Import Workspaces as zip files that can be shared with other people
- Archive Workspaces to ignore them in the list and show them in a separate list of archived workspaces
- Better Feedback for successful actions ( "Hitsound diff generated successfully!" notification)

# 0.1.0 & 0.2.0
- Initial release
Loading
Loading