Skip to content

Commit

Permalink
remove change check
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Mar 1, 2024
1 parent eb24eb1 commit c9d5b1b
Showing 1 changed file with 0 additions and 41 deletions.
41 changes: 0 additions & 41 deletions .github/workflows/test_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,7 @@ concurrency:
cancel-in-progress: true

jobs:
changes:
name: Paths filter
runs-on: ubuntu-22.04
outputs:
should_run: ${{ steps.filter.outputs.src }}
steps:
- uses: actions/checkout@v4

- uses: AurorNZ/paths-filter@v4
id: filter
with:
filters: |
src:
- '!web/package.json'
- '!web/package-lock.json'
- '!web/packages/**'
- '!**/*.md'
build:
needs: changes
if: needs.changes.outputs.should_run== 'true'
name: Test Rust ${{ matrix.rust_version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.rust_version == 'nightly' || matrix.rust_version == 'beta' }}
Expand Down Expand Up @@ -102,8 +82,6 @@ jobs:
tests*/**/*.difference*.png
lints:
needs: changes
if: needs.changes.outputs.should_run== 'true'
name: Lints with Rust ${{ matrix.rust_version }}
runs-on: ubuntu-22.04
continue-on-error: ${{ matrix.rust_version == 'nightly' || matrix.rust_version == 'beta' }}
Expand Down Expand Up @@ -141,22 +119,3 @@ jobs:
run: cargo doc --no-deps --all-features
env:
RUSTDOCFLAGS: -D warnings

check-required:
needs: changes
if: needs.changes.outputs.should_run == 'false'
name: Test Rust ${{ matrix.rust_version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust_version: [stable]
os: [ubuntu-22.04, windows-latest, macos-14]
include:
- rust_version: nightly
os: ubuntu-22.04
- rust_version: beta
os: ubuntu-22.04

steps:
- name: No-op
run: echo noop

0 comments on commit c9d5b1b

Please sign in to comment.