Skip to content

Commit

Permalink
Add environment variable(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Jun 4, 2024
1 parent 399e0df commit 4d58d46
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/env_vars.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
# GITHUB_WORKFLOW: The name of the workflow.
# GITHUB_RUN_ID: A unique identifier for the workflow run.
# GITHUB_RUN_NUMBER: The number of the current run of the workflow.
# GITHUB_ACTION: The name of the action.
# GITHUB_ACTOR: The name of the person or app that initiated the workflow.
# GITHUB_JOB: The ID of the current job.
# GITHUB_REF: The branch or tag ref that triggered the workflow.
# GITHUB_SHA: The commit SHA that triggered the workflow.
# GITHUB_REPOSITORY: The owner and repository name (e.g., user/repo).
name: Linting
on:
- push
- workflow_dispatch
env:
FORCE_COLOR: 1

jobs:
linting:
runs-on: "ubuntu-24.04"

steps:
- run |
echo "Workflow name: $GITHUB_WORKFLOW"

# Checkout this repository
- uses: actions/checkout@v4

# Setup the specified Python version
- name: "Set up Python 3.12"
uses: actions/setup-python@v5
with:
python-version: "3.12"

- run: |
echo "Running on ${{ runner.os }}"
python3 --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r ./requirements.txt
- name: Linting (pylama)
run: pylama .

- name: Linting (black)
run: black --check .
2 changes: 2 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Linting
on:
- push
- workflow_dispatch
env:
FORCE_COLOR: 1

jobs:
linting:
Expand Down

0 comments on commit 4d58d46

Please sign in to comment.