docs: add instructions for Debian 12 to README.md #84
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
name: ci | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
container: swiftlang/swift:nightly-main-jammy | |
steps: | |
- uses: actions/checkout@v4 | |
- run: apt-get update && apt-get install --no-install-recommends -y make llvm-14 | |
- run: make OBJCOPY=llvm-objcopy-14 | |
lint: | |
runs-on: ubuntu-latest | |
container: swiftlang/swift:nightly-main-jammy | |
steps: | |
- uses: actions/checkout@v4 | |
- run: swift format lint -rs . |