Aan de slagBegin gratis

Interpret GitHub Actions Workflow

The following GitHub Actions workflow prints the value of mathematical constant pi using the command line calculator bc in the runners shell.

name: Print Pi Workflow
on:
  push:
    branches: [ "master" ]
jobs:
  print-pi-job:
    runs-on: macos-latest
    steps:
      - name: Print Pi Step
        run: |
          echo pi=`echo "4*a(1)" | bc -l`

Deze oefening maakt deel uit van de cursus

CI/CD for Machine Learning

Bekijk cursus

Interactieve oefening met praktijkervaring

Zet theorie om in actie met een van onze interactieve oefeningen

Begin oefening