Skip to content

Commit

Permalink
changed triggers for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwich committed Sep 12, 2023
1 parent 212cc8b commit 15e5fe0
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/automake.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: Tests and Build
'on':

on:
push:
branches:
- alt2
tags:
- v*
- "*"
pull_request:
branches:
- master
# tags:
# - 'v*'

jobs:
my-job:
runs-on: ubuntu-latest
Expand All @@ -16,6 +21,7 @@ jobs:
- 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
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/automakeback.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Tests and Build
'on':
push:
branches:
- alt2
tags:
- v*
jobs:
my-job:
runs-on: ubuntu-latest
container:
image: iansmith/parigot-devcont-atlanta-0.3:amd64
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


0 comments on commit 15e5fe0

Please sign in to comment.