Change type of x and y parameters to accept signed integer types instead of unsigned. #233
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 test | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }} / ${{ matrix.browser }} (${{ matrix.toolchain }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
browser: [firefox, chrome] | |
toolchain: [stable] | |
include: | |
- os: ubuntu-latest | |
browser: chrome | |
toolchain: beta | |
- os: ubuntu-latest | |
browser: chrome | |
toolchain: nightly | |
steps: | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.toolchain }} | |
- uses: actions/checkout@v2 | |
- name: Install ${{ matrix.browser }} | |
run: | | |
./ci/${{ matrix.os }}-${{ matrix.browser }} | |
- name: cargo test -- --test-threads=1 | |
uses: actions-rs/cargo@v1 | |
env: | |
THIRTYFOUR_BROWSER: ${{ matrix.browser }} | |
with: | |
command: test |