An open API service indexing awesome lists of open source software.

https://github.com/xonsh/actions

Github CI workflows for the xonsh shell internal projects.
https://github.com/xonsh/actions

xonsh-dev xontrib

Last synced: 4 months ago
JSON representation

Github CI workflows for the xonsh shell internal projects.

Awesome Lists containing this project

README

        

# xonsh/actions

Github CI workflows for the xonsh shell projects.

## Usage

Real life example from [xontrib-abbrevs/.github/workflows/test.yml](https://github.com/xonsh/xontrib-abbrevs/blob/5fbd8bfaf7cab2ebda05bb8294e6fc14e65f29e5/.github/workflows/test.yml):

```yaml
name: Testing

on:
push:
pull_request:

jobs:
testing:
# reuse workflow definitions
uses: xonsh/actions/.github/workflows/test-pip-xontrib.yml@main
with:
cache-dependency-path: pyproject.toml

```