Skip to content

Commit

Permalink
fix: regression & ci (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayllyz authored Jun 22, 2024
1 parent 9950c06 commit aa3dc91
Show file tree
Hide file tree
Showing 6 changed files with 509 additions and 568 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/test.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
---
name: build and test
'on':
name: CI

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

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
CI: true

jobs:
build:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Run Clippy
run: cargo clippy --all-targets --all-features

- name: Build
run: cargo build --verbose
run: cargo build

- name: Run tests
run: cargo test --verbose
...
run: cargo test
35 changes: 0 additions & 35 deletions .github/workflows/lint.yml

This file was deleted.

Loading

0 comments on commit aa3dc91

Please sign in to comment.