Skip to content

Updating tool versions #4

Updating tool versions

Updating tool versions #4

Workflow file for this run

name: Build
on:
pull_request:
paths:
- 'Dockerfile'
- '.dockerignore'
jobs:
build:
name: Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build image
run: docker build . -t local
- name: Test Python version
run: docker run -it local python --version
- name: Test CMake version
run: docker run -it local cmake --version
- name: Test ARM compiler version
run: docker run -it local arm-none-eabi-gcc --version