Change type of x and y parameters to accept signed integer types instead of unsigned. #242
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [main] | |
pull_request: | |
name: cargo hack | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- uses: actions/checkout@v2 | |
- name: Install cargo-hack | |
uses: actions-rs/[email protected] | |
with: | |
crate: cargo-hack | |
version: latest | |
use-tool-cache: true | |
- name: cargo hack | |
uses: actions-rs/cargo@v1 | |
with: | |
command: hack | |
args: --feature-powerset --exclude-features bench_private check |