Skip to content

feat: add windows-gnu to rust tests #34

feat: add windows-gnu to rust tests

feat: add windows-gnu to rust tests #34

Workflow file for this run

name: Repo
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
jobs:
whitespace:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check for trailing whitespace
run: |
if git grep -I -n '[[:blank:]]$'; then
echo "Trailing whitespace found. Please fix it."
exit 1
fi