Skip to content

fix: typo

fix: typo #38

Workflow file for this run

name: tests
on:
workflow_call:
pull_request:
push:
branches:
- master
tags:
- '*'
jobs:
tests:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-unknown-linux-gnu
override: true
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
- name: run tests
run: cargo test