Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: General Lints

on:
push:
branches: [master]
pull_request:
branches: [master]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
editorconfig:
name: EditorConfig
runs-on: ubuntu-24.04
env:
VERSION: "v3.3.0"
OS: "linux"
ARCH: "amd64"
SHA256: "923b80494b09b362d4fdb0d706913b67da0d60b4e2d34e5e346aa7e4118d6ab3"
steps:
- uses: actions/checkout@v4

- name: Install editorconfig-checker
run: |
curl -O -L -C - https://github.com/editorconfig-checker/editorconfig-checker/releases/download/$VERSION/ec-$OS-$ARCH.tar.gz
tar xzf ec-$OS-$ARCH.tar.gz -C /tmp
echo "$SHA256 ec-$OS-$ARCH.tar.gz" | sha256sum -c

- name: Run editorconfig-checker
run: |
/tmp/bin/ec-$OS-$ARCH
2 changes: 1 addition & 1 deletion tests/tests/swfs/avm1/register_class_with_sound/test.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
num_ticks = 1
known_failure = true
known_failure = true
2 changes: 1 addition & 1 deletion tests/tests/swfs/avm2/loaderinfo_loadurl/test.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
num_ticks = 1
num_ticks = 1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
num_frames = 2
known_failure = true # https://github.com/ruffle-rs/ruffle/issues/12443
known_failure = true # https://github.com/ruffle-rs/ruffle/issues/12443
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
num_frames = 20
known_failure = true # https://github.com/ruffle-rs/ruffle/issues/12443
known_failure = true # https://github.com/ruffle-rs/ruffle/issues/12443
2 changes: 1 addition & 1 deletion tests/tests/swfs/timeline/missing_frame_scripts/test.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
num_frames = 20
known_failure = true # https://github.com/ruffle-rs/ruffle/issues/20580
known_failure = true # https://github.com/ruffle-rs/ruffle/issues/20580
Loading