Skip to content

Add scraper module (#9) #29

Add scraper module (#9)

Add scraper module (#9) #29

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
style:
timeout-minutes: 15
name: Check code formatting
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/[email protected]
with:
clean: false
fetch-depth: 0
- name: Filter for Rust file changes only
uses: dorny/paths-filter@v2
id: changes
with:
filters: |
src:
- 'src/*.rs'
- if: steps.changes.outputs.files == 'src/*.rs'
- name: Remove untracked files

Check failure on line 31 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 31
run: git clean -df
- name: Run code style check
uses: ./.github/actions/check_style