Skip to content

Commit

Permalink
remove env var
Browse files Browse the repository at this point in the history
  • Loading branch information
jtenholder committed Oct 27, 2023
1 parent 51c7feb commit 90180b4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,16 @@ name: python CI/CD pipeline

on: [push]

env:
SCRIPT_NAME: hello.py

jobs:
test:
name: Test ${{ env.SCRIPT_NAME }}
name: Test Script
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Script
run: py ./${{ env.SCRIPT_NAME }}
run: py ./hello.py
build:
name: Build and Store Artifact
runs-on: ubuntu-latest
Expand Down

0 comments on commit 90180b4

Please sign in to comment.