Skip to content

Commit

Permalink
Experiment with environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Jun 4, 2024
1 parent d245cba commit 6c6619a
Showing 1 changed file with 4 additions and 31 deletions.
35 changes: 4 additions & 31 deletions .github/workflows/env_vars.yml
Original file line number Diff line number Diff line change
@@ -1,49 +1,22 @@
---
# 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: Env Vars
on:
- push
- workflow_dispatch
env:
FORCE_COLOR: 1
ENVIRONMENT: gh_actions

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

steps:
- run: |
echo "Workflow name: $GITHUB_WORKFLOW"
echo "Repository: $GITHUB_REPOSITORY"
# 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 .
echo "Environment: $ENVIRONMENT"
echo "Environment: ${{ ENVIRONMENT }}"
- name: Linting (black)
run: black --check .

0 comments on commit 6c6619a

Please sign in to comment.