mirror of
https://github.com/mnauw/git-remote-hg.git
synced 2026-02-04 04:19:05 +01:00
25 lines
603 B
YAML
25 lines
603 B
YAML
on:
|
|
push:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
hg: [ '5.5', '5.6', '5.7', '5.8', '5.9', '6.0', '6.1', '6.2', '6.3' ]
|
|
env:
|
|
HG_VERSION: ${{ matrix.hg }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
check-latest: true
|
|
- name: Cache check-versions script
|
|
id: cache-check-versions
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/.cache/git-remote-hg
|
|
key: check-versions
|
|
- run: ./tools/check-versions hg:$HG_VERSION
|