Skip to content

Commit

Permalink
feat(ci): init (#14)
Browse files Browse the repository at this point in the history
* feat(ci): init
  • Loading branch information
corinz committed Jan 22, 2024
1 parent 359158b commit 5b20155
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 14 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Wails build

on:
pull_request:
types: [opened, reopened]
push:
tags: ['*']

jobs:
build:
strategy:
fail-fast: false
matrix:
build: [
{name: wailsTest, platform: linux/amd64, os: ubuntu-latest},
{name: wailsTest, platform: windows/amd64, os: windows-latest},
{name: wailsTest, platform: darwin/universal, os: macos-latest}
]
runs-on: ${{ matrix.build.os }}
steps:
- uses: actions/checkout@v4
- uses: dAppServer/[email protected]
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
22 changes: 8 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,14 @@ Here's a list of things that work:
3. A working GraphQL API with an Apollo client

Here's a list of future features:
1. Searching resources by short name, by plural noun, or fuzzy
2. Namespace filtering
3. Sorting columns lexicographically
4. Cluster info/stats display
5. Displaying/handling complex datastructures in the UI
6. Viewing raw yaml, events, and logs
7. Advanced features
- responsive UI
- shell/exec
- port forwarding
- edit resources
- breadcrumb nav
- graphql query builder for advanced queries
1. Unit tests
2. Searching resources by short name, by plural noun, or fuzzy
3. Namespace filtering
4. Sorting columns lexicographically
5. Cluster info/stats display
6. Displaying/handling complex datastructures in the UI
7. Viewing raw yaml, events, and logs
8. Advanced features: responsive UI, shell/exec, port forwarding, edit resources, breadcrumb nav, graphql query builder for advanced queries

**Contributions for these features are welcome!**

Expand All @@ -36,7 +31,6 @@ Here's a list of future features:
3. Desktop Mode: run `wails dev` and follow the prompts. See below for more details
4. Navigate to http://localhost:8080/sandbox to interact with the GraphQL API via Apollo


### Requirements
1. Go
2. NPM
Expand Down

0 comments on commit 5b20155

Please sign in to comment.