Files
latls/.gitea/workflows/ci.yaml
Kris Kwiatkowski 384f7c12b8
Some checks failed
CI / test (push) Failing after 4s
CI / clippy (push) Failing after 4s
CI / no-std (push) Failing after 4s
CI / build (push) Failing after 27s
Initial commit
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-21 08:51:26 +00:00

39 lines
1006 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- run: cargo build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- run: cargo test
- run: cargo test --features webpki
- run: cargo test --features native-pki
- run: cargo test --features native-pki,rsa
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable && rustup component add clippy
- run: cargo clippy -- -D warnings
no-std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable && rustup target add thumbv7em-none-eabi
- run: cargo build --target thumbv7em-none-eabi --no-default-features