Skip to content

kumiori is learning GitHub Actions #36

kumiori is learning GitHub Actions

kumiori is learning GitHub Actions #36

Workflow file for this run

name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on:
push:
branches:
- 'andres-rev-patch'
jobs:
build-image-and-run-tests:
runs-on: ubuntu-latest
container: kumiori3/numerix:stable-amd64
steps:
# - name: Checkout code
# uses: actions/checkout@v4
- name: test-step
shell: bash
run: |
echo "--This is running in my numerix Docker image--"
echo "Current directory is $(pwd)"
echo "Contents of the directory are $(ls -la)"