Skip to content

feat: 🎸 add black plugin #7

feat: 🎸 add black plugin

feat: 🎸 add black plugin #7

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
test:
name: "${{ matrix.config.target }}"
runs-on: "${{ matrix.config.os }}"
strategy:
fail-fast: false
matrix:
config:
- os: macos-12
target: x86_64-apple-darwin
- os: macos-14
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
- if: github.ref_name != 'main'
run: |
set -eux
sed -i '' "s/appthrust\/proto-toml-plugins\/main/appthrust\/proto-toml-plugins\/${{ github.ref_name }}/g" .prototools
cat .prototools
- name: Install
uses: moonrepo/setup-toolchain@v0
env:
PROTO_LOG: debug
with:
auto-install: true
cache: false