Skip to content

Commit

Permalink
Testing macos and windows runners
Browse files Browse the repository at this point in the history
  • Loading branch information
Grandine Team committed Mar 23, 2024
1 parent 462dada commit edc0646
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,28 @@ on: [push]
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos14]

steps:
- name: Cache git folder
uses: actions/cache@v4
with:
path: .git
key: git-repository-key
- uses: actions/checkout@v4
with:
submodules: true
lfs: true
# - name: Git lfs pull
# working-directory: consensus-spec-tests
# run: git lfs pull
- name: Install Rust
run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Run formatter
run: cargo fmt --check
if: matrix.os == 'ubuntu-latest'
- name: Run clippy
run: bash scripts/ci/clippy.bash
- name: Run tests
Expand Down

0 comments on commit edc0646

Please sign in to comment.