Skip to content

build(deps): bump thiserror from 1.0.65 to 2.0.0 in /native/candlex #1456

build(deps): bump thiserror from 1.0.65 to 2.0.0 in /native/candlex

build(deps): bump thiserror from 1.0.65 to 2.0.0 in /native/candlex #1456

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
- cron: '0 12 1 * *'
jobs:
main:
runs-on: ubuntu-latest
env:
CANDLEX_NIF_BUILD: true
BLEND: ${{ matrix.blend }}
strategy:
fail-fast: false
matrix:
include:
- elixir: '1.17'
erlang: '27.0'
lint: true
- elixir: '1.16'
erlang: '26.2.5'
- elixir: '1.15'
erlang: '25.3.2.12'
- elixir: '1.15'
erlang: '25.3.2.12'
blend: "nx06"
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check --manifest-path=native/candlex/Cargo.toml
if: ${{ matrix.lint }}
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.erlang }}
elixir-version: ${{ matrix.elixir }}
- run: mix deps.unlock --all && mix deps.get
if: ${{ github.event_name == 'schedule' }}
- run: mix deps.get --check-locked
if: ${{ github.event_name != 'schedule' }}
- run: mix format --check-formatted
if: ${{ matrix.lint }}
- run: mix deps.unlock --check-unused
if: ${{ matrix.lint }}
- run: mix deps.compile
- run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
- run: mix test
- run: mix run examples/linear_regression.exs
- run: mix run examples/image_classification.exs
- run: mix run examples/text_classification.exs