Skip to content

Particle: update installation method #1205

Particle: update installation method

Particle: update installation method #1205

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
particle:
name: Particle
runs-on: ubuntu-latest
if: github.event_name == 'push'
strategy:
fail-fast: false
matrix:
include:
- board: argon
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Particle CLI
run: |
bash <( curl -sL https://particle.io/install-cli )
echo "$HOME/bin" >> $GITHUB_PATH
- name: Login to Particle
run: particle login -t "${{ secrets.PARTICLE_TOKEN }}"
- name: Compile
run: extras/ci/particle.sh ${{ matrix.board }}