test: added a (non passing!) test for long to string #91
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
name: Rust | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CARGO_TERM_COLOR: always | |
ENV CARGO_INCREMENTAL: 0 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- uses: extractions/setup-just@v1 | |
- run: | | |
rustup set auto-self-update disable | |
rustup toolchain install stable --profile minimal | |
- uses: taiki-e/install-action@nextest | |
- uses: Swatinem/rust-cache@v2 | |
- name: Build and test | |
run: just build test | |
- name: Lint | |
run: just lint |