Skip to content

Commit

Permalink
ci: Drop nightly build/lint tests
Browse files Browse the repository at this point in the history
There is not much point "preparing hassle-rs for the future" if the
lints are false positives and prevent us from submitting or having
actually good code.  Overnight two false positives got introduced:
https://github.com/Traverse-Research/hassle-rs/runs/5006913943?check_suite_focus=true
One needs the borrow to satisfy a peculiar `From`/`Into` implementation,
and the `&mut Vec<>` is pushed to which makes it impossible to turn this
into a mutable borrow of a slice.
  • Loading branch information
MarijnS95 committed Jan 31, 2022
1 parent 518eb2d commit ce63556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
rust: [stable, nightly]
rust: [stable]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit ce63556

Please sign in to comment.