Skip to content

Commit

Permalink
replacing macos by ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmncos committed Aug 12, 2024
1 parent 13d6835 commit 25342eb
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,22 @@ on:
pull_request:
env:
RUSTFLAGS: "-D warnings"

jobs:
coverage:
runs-on: ${{ matrix.platform }}
name: "${{ matrix.example }} - ${{ matrix.platform }}"
strategy:
matrix:
platform: [macos-latest]
platform: [ubuntu-latest]
toolchain: [stable]
steps:
- uses: actions/checkout@v3
- name: Install Homebrew
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- name: Install LLVM
run: brew install llvm
- name: Add LLVM to PATH
run: echo "/opt/homebrew/opt/llvm/bin" >> $GITHUB_PATH
run: |
sudo apt-get update
sudo apt-get install -y llvm clang
- name: Install cargo-llvm-cov
run: brew install cargo-llvm-cov
run: cargo install cargo-llvm-cov
- name: Llvm version
run: llvm-config --version
- name: Clang version
Expand Down

0 comments on commit 25342eb

Please sign in to comment.