Skip to content

Bump github.com/infinite-iroha/touka from 0.5.1-0.20260409232140-271e54eb4d44 to 1.0.0 #42

Bump github.com/infinite-iroha/touka from 0.5.1-0.20260409232140-271e54eb4d44 to 1.0.0

Bump github.com/infinite-iroha/touka from 0.5.1-0.20260409232140-271e54eb4d44 to 1.0.0 #42

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- "**"
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
go-test:
name: Go Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Run Go tests
run: go test ./...
rust-test:
name: Rust Test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Run Rust tests
run: cargo test --manifest-path smart-git-rs/Cargo.toml --locked