Skip to content

upgrade to mill 0.11 #87

upgrade to mill 0.11

upgrade to mill 0.11 #87

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
name: Mill Continuous Integration

Check failure on line 8 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
env:
USER: runner
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- uses: cachix/install-nix-action@v19
with:
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
nix_path: nixpkgs=channel:nixos-unstable
- name: run test
run: |
nix --experimental-features 'nix-command flakes' develop -c mill -i -j 0 cdetest
check_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- uses: cachix/install-nix-action@v19
with:
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
nix_path: nixpkgs=channel:nixos-unstable
- name: check format
run: |
nix --experimental-features 'nix-command flakes' develop -c mill -i -j 0 "__.checkFormat"