Skip to content

Commit

Permalink
Switch to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Feb 8, 2025
1 parent a70e0d2 commit de0bb72
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 20 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: build

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile=minimal --component clippy --component rustfmt
- run: cargo clippy -- -D warnings
- run: cargo fmt --all -- --check

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile=minimal
- run: cargo test
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "blas"
version = "0.22.0"
version = "0.23.0"
edition = "2021"
license = "Apache-2.0/MIT"
authors = [
"Andrew Straw <[email protected]>",
Expand All @@ -25,5 +26,5 @@ version = "0.4"
default-features = false

[dependencies.blas-sys]
version = "0.7"
version = "0.8"
default-features = false
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The following two notices apply to every file of the project.
## The Apache License

```
Copyright 2014–2021 The blas Developers
Copyright 2014–2025 The blas Developers
Licensed under the Apache License, Version 2.0 (the “License”); you may not use
this file except in compliance with the License. You may obtain a copy of the
Expand All @@ -28,7 +28,7 @@ specific language governing permissions and limitations under the License.
## The MIT License

```
Copyright 2014–2021 The blas Developers
Copyright 2014–2025 The blas Developers
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ will be licensed according to the terms given in [LICENSE.md](LICENSE.md).
[architecture]: https://blas-lapack-rs.github.io/architecture
[blas]: https://en.wikipedia.org/wiki/BLAS

[build-img]: https://travis-ci.org/blas-lapack-rs/blas.svg?branch=master
[build-url]: https://travis-ci.org/blas-lapack-rs/blas
[build-img]: https://github.com/blas-lapack-rs/blas/actions/workflows/build.yml/badge.svg
[build-url]: https://github.com/blas-lapack-rs/blas/actions/workflows/build.yml
[documentation-img]: https://docs.rs/blas/badge.svg
[documentation-url]: https://docs.rs/blas
[package-img]: https://img.shields.io/crates/v/blas.svg
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
//! [blas]: https://en.wikipedia.org/wiki/BLAS
extern crate blas_sys as ffi;
extern crate libc;
extern crate num_complex as num;

use libc::c_char;
Expand Down

0 comments on commit de0bb72

Please sign in to comment.