mirror of
https://github.com/J08nY/std-curves.git
synced 2026-01-09 13:28:01 -05:00
21 lines
411 B
YAML
21 lines
411 B
YAML
name: Order check
|
|
|
|
on:
|
|
push:
|
|
branches: [ data ]
|
|
pull_request:
|
|
branches: [ data ]
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Get ecgen
|
|
run: |
|
|
wget "https://github.com/J08nY/ecgen/releases/latest/download/ecgen-static"
|
|
chmod +x ./ecgen-static
|
|
- name: Check the curves
|
|
run: ./.github/workflows/validate.sh
|
|
|