mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 13:53:07 +00:00
18 lines
305 B
YAML
18 lines
305 B
YAML
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request: ~
|
|
|
|
jobs:
|
|
test:
|
|
name: Standard test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- name: Test
|
|
uses: icepuma/rust-action@master
|
|
with:
|
|
args: cargo test --release
|