Skip to content

Commit 2ea0bcb

Browse files
authored
Initial Structure & Prototype (#1)
* initial commit * add viper * stub out readme * basic schema def * rename to main * basic plumbing * add schema validation * add multiple profile per file support * clone repos from profile * concurrent clones * update flag * prototype * add tasks and environments * rename * env vars * consolidate lib package * Update readme * Add Codecov action to workflow for coverage reports * stub out readme * add codecov badge * add tests * ignore executable * basic plumbing * add schema validation * clone repos from profile * concurrent clones * messy rebase * clean-up profile * build and test * remove unused * profile works * minor details * validate schema * test instances * expand readme * remove profile * compile profile * install repos * expand path * remove test artifacts * clean-up * update readme * docs(contributing): init * chore(docs): remove unused docs * chore(env): remove test code
1 parent 5a08e12 commit 2ea0bcb

39 files changed

Lines changed: 2617 additions & 12 deletions

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build and Test
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
jobs:
13+
build:
14+
runs-on: ${{ matrix.os }}
15+
strategy:
16+
matrix:
17+
os: [ubuntu-latest, macos-latest, windows-latest]
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Set up Go
21+
uses: actions/setup-go@v5
22+
with:
23+
go-version: '1.24.4'
24+
- name: Build
25+
run: go build -v ./...
26+
- name: Test
27+
run: go test -v ./...

.github/workflows/codecov.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Run Tests
18-
run: |
19-
go test -coverprofile=coverage.txt
18+
run: go test -coverprofile=coverage.txt
2019
- uses: codecov/codecov-action@v5
2120
with:
2221
token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
*.so
99
*.dylib
1010
raid
11-
!raid/
1211

1312
# Test binary, built with `go test -c`
1413
*.test

0 commit comments

Comments
 (0)