Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/illume/supply-chain-linters

experimental, just for learning, do not use
https://github.com/illume/supply-chain-linters

Last synced: about 1 month ago
JSON representation

experimental, just for learning, do not use

Awesome Lists containing this project

README

        

This is just an experiment to learn some things about github actions. Do not use.

```yaml
name: Run Supply Chain Linters
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Run Supply Chain Linter
uses: illume/supply-chain-linters@main
with:
args: ./...
```