Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/illume/supply-chain-linters
- Owner: illume
- Created: 2024-09-16T18:10:17.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T09:41:17.000Z (3 months ago)
- Last Synced: 2024-10-12T12:45:35.253Z (2 months ago)
- Language: Makefile
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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: ./...
```