GitXplorerGitXplorer
j

python-actions-alpha-archived

public
15 stars
7 forks
3 issues

Commits

List of commits on branch master.
Verified
ba888adab5b57956dce82b7dfc06e87b65090a6d

:tractor: Adds VENV_NAME

jjefftriplett committed 6 years ago
Verified
9e75343121c110f9b614369a6639075258a6bceb

:whale: Updates Docker

jjefftriplett committed 6 years ago
Verified
fa0dd9cacb98dc4735033fa92719ede5f42aad66

:tractor: Updates python name

jjefftriplett committed 6 years ago
Verified
d11e648799f6afb31229696db138bd4fc2e042e0

:tractor: Updates venv to be in an venv folder to make excluding easier

jjefftriplett committed 6 years ago
Verified
1a34b0c27334c4a8b789fa30c0c9fb39002067e8

:tractor: Major refactor

jjefftriplett committed 6 years ago
Verified
7b57c4432b1fe12113520417e2b7ded41b6dad38

:whale: Updates dockerfiles to have a /workspace

jjefftriplett committed 6 years ago

README

The README file for this repository.

action-python

Usage

This example workflow would build, lint, and test a python project.

workflow "Build and Test" {
  on = "push"
  resolves = [
    "Test",
  ]
}

action "Build" {
  uses = "jefftriplett/python-actions@master"
  args = "pip install -r requirements.txt"
}

action "Lint" {
  uses = "jefftriplett/python-actions@master"
  args = "black --check"
  needs = ["Build"]
}

action "Test" {
  uses = "jefftriplett/python-actions@master"
  args = "pytest"
  needs = ["Lint"]
}