-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (31 loc) · 838 Bytes
/
Copy pathminimum-vcs.yml
File metadata and controls
38 lines (31 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Test Against Minimum VCS Versions
on:
pull_request:
push:
branches:
- master
schedule:
- cron: '0 7 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }}
cancel-in-progress: true
permissions: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
with:
persist-credentials: false
- name: Build Docker image
run: docker build -t minimum-vcs .github/workflows/tools/minimum-vcs
- name: Run tests
run: |
docker run \
--rm \
-v $PWD:/docked \
-w /docked \
minimum-vcs \
tox -e py -- -vv -m "not describe_exclude"
# vim:set et sts=2: