chore(steward): update mill-main from 0.11.10 to 0.11.12 #34
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: Continuous Integration | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
code-check: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Coursier Cache | |
uses: coursier/cache-action@v6 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Setup Mill | |
uses: zhutmost/setup-mill@main | |
- name: Check formatting | |
run: | |
mill -i __.checkFormat | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Verilator | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: verilator | |
version: 1.0 | |
- name: Setup Coursier Cache | |
uses: coursier/cache-action@v6 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Setup Mill | |
uses: zhutmost/setup-mill@main | |
- name: Run tests | |
run: | |
mill -i __.test |