Skip to content

Add test

Add test #7

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
jobs:
e2e_windows:
runs-on: Windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.21.6
- name: Install protoc
uses: arduino/setup-protoc@v3
- name: Prepare protobuf
run: |
go install google.golang.org/protobuf/cmd/[email protected]
make
- name: Download dependencies
run: go mod download
- name: Build mayakashi
run: |
cargo build
cp target/debug/mayakashi.exe mayakashi.exe
- name: Build marmounter
run: go build -o marmounter.exe ./marmounter
env:
CGO_ENABLED: "0"
- name: Run E2E test
run: python3 tests/e2e.py