Skip to content

chore: Initial GHA workflow #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jan 4, 2022
Prev Previous commit
Next Next commit
Add placeholders for test/go and test/js
  • Loading branch information
bryphe-coder committed Jan 3, 2022
commit 2f1ff577c6ead48e8745427b74ad4016d84d5bf9
40 changes: 40 additions & 0 deletions .github/workflows/coder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,43 @@ jobs:

- name: "make ${{ matrix.style }}"
run: "make --output-sync -j ${{ matrix.style }}"

test-go:
name: "test/go"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-go@v2
with:
go-version: "^1.17"

# Check that go is available
# TODO: Implement actual test run
- run: go --version

test-js:
name: "test/js"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: "14"

# Check that node is available
# TODO: Implement actual test run
- run: node --version