Removed hyphens after function arguments in documentation. #426
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
name: sanity | |
on: | |
push: | |
paths: | |
- '.github/workflows/sanity.yml' | |
- 'Dockerfile' | |
- 'res/solutions/*.txt' | |
- '**.rs' | |
workflow_dispatch: | |
jobs: | |
sanity32: | |
name: sanity on 32-bit alpine:3.19 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/build-push-action@v5 | |
with: | |
push: false | |
load: true | |
tags: sanity32 | |
- uses: addnab/docker-run-action@v3 | |
with: | |
image: sanity32 | |
run: cargo -vv run -vv --release | |
sanity64: | |
name: sanity on 64-bit ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-13, macos-14, ubuntu-22.04, windows-2022] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cargo -vv run -vv --release |