File tree Expand file tree Collapse file tree 1 file changed +31
-1
lines changed
Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ # GitHub Actions configuration **EXAMPLE**,
2+ # MODIFY IT ACCORDING TO YOUR NEEDS!
3+ # Reference: https://docs.github.com/en/actions
4+
5+
16name : Testing
27on : [pull_request]
38permissions :
49 contents : read
510
6- jobs :
11+ # name: test
712
13+ # on:
14+ # push:
15+ # Avoid using all the resources/limits available by checking only
16+ # relevant branches and tags. Other branches can be checked via PRs.
17+ # branches: [main]
18+ # tags: ["v[0-9]*", "[0-9]+.[0-9]+*"] # Match tags that resemble a version
19+ # pull_request: # Run in every PR
20+ # workflow_dispatch: # Allow manually triggering the workflow
21+ # schedule:
22+ # Run roughly every 15 days at 00:00 UTC
23+ # (useful to check if updates on dependencies break the package)
24+ # - cron: "0 0 1,16 * *"
25+
26+ # concurrency:
27+ # group: >-
28+ # ${{ github.workflow }}-${{ github.ref_type }}-
29+ # ${{ github.event.pull_request.number || github.sha }}
30+ # cancel-in-progress: false
31+
32+ jobs :
833 prepare :
934 runs-on : ubuntu-latest
1035 outputs :
3560 name : python-distribution-files
3661 path : dist/
3762 retention-days : 1
63+ # - name: Keepalive Workflow
64+ # uses: gautamkrishnar/keepalive-workflow@1.1.0
65+ # with:
66+ # time_elapsed: 44
67+ # gh_token: ${{ secrets.GITHUB_TOKEN }}
3868
3969 test :
4070 needs : prepare
You can’t perform that action at this time.
0 commit comments