diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-04-17 22:51:26 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2025-04-17 22:51:26 +0200 |
| commit | d12ee2ef83989d0fcf71b20a0305111344a69b7d (patch) | |
| tree | f855621f6be4f8799ce1d2e41951a43cf4375c51 | |
| parent | 7f9558a146ba6f5c2210fb534d9d5829fcb6706a (diff) | |
Remove old linux runner
| -rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e723e53..ff32b31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,11 +2,11 @@ name: CI on: push: - branches: ['master'] - paths-ignore: ['**/*.md'] + branches: ["master"] + paths-ignore: ["**/*.md"] pull_request: - branches: ['master'] - paths-ignore: ['**/*.md'] + branches: ["master"] + paths-ignore: ["**/*.md"] # Allow to run this workflow manually from the Actions tab. workflow_dispatch: @@ -36,14 +36,14 @@ jobs: linux: strategy: matrix: - os: [ubuntu-20.04, ubuntu-latest] + os: [ubuntu-latest] fail-fast: false runs-on: ${{ matrix.os }} timeout-minutes: 15 steps: - uses: actions/checkout@v4 - name: Setup Dependencies - run: | + run: | wget https://apt.llvm.org/llvm.sh chmod +x llvm.sh sudo ./llvm.sh 17 |