Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/testable-simd-models.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow runs the tests for testable simd models.

name: Testable simd models

on:
workflow_dispatch:
merge_group:
pull_request:
branches: [ main ]
push:
paths:
- '.github/workflows/testable-simd-models.yml'
- 'testable-simd-models/**'

defaults:
run:
shell: bash

jobs:
testable-simd-models:
name: Test testable simd models
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Run tests
run: cargo test -- --test-threads=1 --nocapture

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,4 @@ goto-transcoder
# already existing elements were commented out

#/target
testable-simd-models/target
90 changes: 90 additions & 0 deletions library/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions testable-simd-models/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "testable-simd-models"
version = "0.0.2"
authors = ["Cryspen"]
license = "Apache-2.0"
homepage = "https://github.com/cryspen/verify-rust-std/testable-simd-models"
edition = "2021"
repository = "https://github.com/cryspen/verify-rust-std/testable-simd-models"
readme = "README.md"

[dependencies]
rand = "0.9"
pastey = "0.1.0"
lazy_static = "1.5.0"

[lints.rust]
unexpected_cfgs = { level = "warn" }
Loading
Loading