Skip to content

updated file

updated file #30

Workflow file for this run

name: Tests and Build
'on':
push:
branches:
- alt2
tags:
- v*
jobs:
my-job:
runs-on: ubuntu-latest
container:
image: composer:latest
volumes:
- ${{ github.workspace }}:/workspaces/parigot
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Build Docker image
run: docker build -t my-test-image .devcontainer
# - name: Run tests using Docker image
# run: docker run --rm my-test-image make test
- name: show workspace location
run: echo $GITHUB_WORKSPACE
- name: list top level files
run: ls -l /workspaces/parigot
- name: show $PATH
run: echo $PATH
- name: show go
run: which go
- name: show go version
run: which go1.21.0
- name: build Makefile
run: make && make test