From eb329f2690e5055ad1f1667f677921ec2c6080e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Grome=C5=A1?= Date: Sat, 22 Aug 2020 09:42:55 +0200 Subject: [PATCH] [CI] Added missing paths --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d596aa63..86e5291a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,10 +13,13 @@ jobs: steps: - name: Install dependencies run: | - curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh + mkdir -p ~/.local/bin + echo "::add-path::~/.local/bin" + curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=~/.local/bin sh export PATH=$PATH:$PWD/bin arduino-cli core update-index; arduino-cli core install arduino:avr; + export WARNINGS=all; - uses: actions/checkout@v2