Skip to content

Commit

Permalink
General maintainence (#308)
Browse files Browse the repository at this point in the history
* General maintenance

* Upgrade dependencies
* Remove the CSC 16 protocol version in favor of a monolithic counter.
* Include lock file into master
* Update rust supported version
* Fix all clippy suggestions
  • Loading branch information
TimonPost committed Oct 7, 2023
1 parent 2c5e46e commit e8ffb26
Show file tree
Hide file tree
Showing 13 changed files with 957 additions and 104 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/build_and_test.yml
@@ -1,20 +1,26 @@
name: Rust
name: Laminar CI

on:
push:
branches:
- master

branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
test:
build:

name: Running on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test --verbose
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -2,6 +2,5 @@ target/
book/
.idea/
**/*.rs.bk
Cargo.lock
.DS_Store
.idea

0 comments on commit e8ffb26

Please sign in to comment.