Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
wlwilliamx committed Sep 17, 2022
2 parents 8aa327e + 3fb2ffd commit 995dde7
Show file tree
Hide file tree
Showing 81 changed files with 7,468 additions and 4,607 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dead-link-checker.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Layotto Env Pipeline 🌊

# Deadlink Validation will auto run at 0:00 am everyday.
on:
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * *'

jobs:
check:
Expand All @@ -23,4 +23,4 @@ jobs:
nohup docsify serve docs -p 3000 &
- name: Check dead links in all the .md files
run: make style.deadlink
run: make deadlink
10 changes: 5 additions & 5 deletions .github/workflows/layotto-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
go-version: 1.18.1
- name: Format Go
run: |
make check.style
make workspace
resolve-modules:
name: "🌈️ Resolve Go Modules"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
with:
go-version: 1.18.1
- name: Go Unit Test
run: make check.unit
run: make test

coverage:
name: "🤔 Coverage Analysis"
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Test Coverage
run: make style.coverage
run: make coverage
- name: Post Coverage
run: bash <(curl -s https://codecov.io/bash)

Expand All @@ -97,7 +97,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Run Integrate tests
run: make integrate.wasm
run: make integrate-wasm

runtime-integrate:
name: "⚙️ Integrate with Runtime"
Expand All @@ -111,7 +111,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Run Integrate tests
run: make integrate.runtime
run: make integrate-runtime

build-binary-darwin-amd64-artifact:
name: "🧳 Darwin AMD64 Artifact"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/layotto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
go-version: 1.18.1
- name: Format Go
run: |
make check.style
make workspace
resolve-modules:
name: "👀 Resolve Go Modules"
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
with:
go-version: 1.18.1
- name: Go Unit Test
run: make check.unit
run: make test

coverage:
name: "🤔 Coverage Analysis"
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Test Coverage
run: make style.coverage
run: make coverage
- name: Post Coverage
run: bash <(curl -s https://codecov.io/bash)

Expand All @@ -86,7 +86,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Run Integrate tests
run: make integrate.wasm
run: make integrate-wasm

runtime-integrate:
name: "⚙️ Integrate with Runtime"
Expand All @@ -100,7 +100,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Run Integrate tests
run: make integrate.runtime
run: make integrate-runtime

build-binary-darwin-amd64-artifact:
name: "🧳 Darwin AMD64 Artifact"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quickstart-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
fi
- name: Test quickstart in Golang 1.14.13
run: make style.quickstart
run: make quickstart

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.17.8

- name: Test quickstart in Golang 1.17.8
run: make style.quickstart QUICKSTART_VERSION=1.17
run: make quickstart QUICKSTART_VERSION=1.17
1 change: 1 addition & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Layotto Env Pipeline 🌊

on:
schedule:
- cron: '30 1 * * *'
Expand Down
Loading

0 comments on commit 995dde7

Please sign in to comment.