Bump google.golang.org/protobuf from 1.35.1 to 1.35.2 #206
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [pull_request] | |
jobs: | |
golang: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22" | |
check-latest: true | |
cache: true | |
- name: Run Tests (Go v1) | |
run: go test -v ./... | |
- name: Run Tests (Go v2) | |
run: | | |
cd v2 | |
go test -v ./... | |
rust: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Rust | |
run: | | |
rustup toolchain install stable --profile minimal --no-self-update | |
rustup default stable | |
rustup target add wasm32-wasi | |
shell: bash | |
- name: Cargo fmt | |
run: cargo fmt --all -- --check | |
- name: Cargo check | |
run: cargo check | |
- name: Cargo check wasm32-wasi | |
run: cargo check --target wasm32-wasi | |
- name: Run Tests (Rust) | |
run: cargo test | |
typescript: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
registry-url: "https://registry.npmjs.org" | |
- name: Cache the Node Modules Directory | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-${{ hashFiles('*.json') }} | |
- name: Install Node Dependencies with NPM | |
run: npm install | |
- name: Run Tests (JS) | |
run: npm run test | |
c: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update APT | |
run: sudo apt-get update -y | |
- name: Install Valgrind | |
run: sudo apt-get install valgrind -y | |
- name: Run Tests | |
run: make clib_test |