Use module paths instead of conditional module includes for sys modules #159
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: | |
pull_request: | |
paths: | |
- '**.rs' | |
- 'count_loc.sh' | |
- '.github/workflows/loc.yml' | |
name: 'LOC' | |
jobs: | |
check_lines_of_code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install tokei | |
run: cargo install tokei | |
- name: Check LOC <= 1024 | |
run: ./count_loc.sh |