├── .dockerignore ├── .github └── workflows │ ├── docker-build.yml │ └── docker-lint.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh ├── screenshot.png └── test ├── Warnings ├── .gitignore ├── Package.swift ├── README.md ├── Sources │ └── Warnings │ │ └── Warnings.swift ├── Tests │ ├── LinuxMain.swift │ └── WarningsTests │ │ ├── WarningsTests.swift │ │ └── XCTestManifests.swift └── expected.txt ├── errors ├── .gitignore ├── Package.swift ├── README.md ├── Sources │ └── errors │ │ └── errors.swift ├── Tests │ ├── LinuxMain.swift │ └── errorsTests │ │ ├── XCTestManifests.swift │ │ └── errorsTests.swift └── expected.txt └── no-lintable-files └── .placeholder /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/docker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/.github/workflows/docker-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/screenshot.png -------------------------------------------------------------------------------- /test/Warnings/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /test/Warnings/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/Warnings/Package.swift -------------------------------------------------------------------------------- /test/Warnings/README.md: -------------------------------------------------------------------------------- 1 | # Warnings 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /test/Warnings/Sources/Warnings/Warnings.swift: -------------------------------------------------------------------------------- 1 | struct Warnings { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /test/Warnings/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/Warnings/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /test/Warnings/Tests/WarningsTests/WarningsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/Warnings/Tests/WarningsTests/WarningsTests.swift -------------------------------------------------------------------------------- /test/Warnings/Tests/WarningsTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/Warnings/Tests/WarningsTests/XCTestManifests.swift -------------------------------------------------------------------------------- /test/Warnings/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/Warnings/expected.txt -------------------------------------------------------------------------------- /test/errors/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /test/errors/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/errors/Package.swift -------------------------------------------------------------------------------- /test/errors/README.md: -------------------------------------------------------------------------------- 1 | # errors 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /test/errors/Sources/errors/errors.swift: -------------------------------------------------------------------------------- 1 | struct errors { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /test/errors/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/errors/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /test/errors/Tests/errorsTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/errors/Tests/errorsTests/XCTestManifests.swift -------------------------------------------------------------------------------- /test/errors/Tests/errorsTests/errorsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/errors/Tests/errorsTests/errorsTests.swift -------------------------------------------------------------------------------- /test/errors/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norio-nomura/action-swiftlint/HEAD/test/errors/expected.txt -------------------------------------------------------------------------------- /test/no-lintable-files/.placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------