[CI] Added missing paths

This commit is contained in:
Jan Gromeš 2020-08-22 09:42:55 +02:00 committed by GitHub
parent 051563aa73
commit eb329f2690
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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