Fix an issue where no arguments to entry
proc macro attribute caused
#2
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: CI | |
on: | |
push: | |
paths: | |
- '**.rs' | |
- '**Cargo.toml' | |
- .github/workflows/ci.yml | |
- .github/actions/*/action.yml | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout and setup | |
uses: speelbarrow/checkout-and-setup@v1 | |
- name: Run tests | |
run: cargo test --workspace --all-features |