mirror of
https://github.com/mnauw/git-remote-hg.git
synced 2026-07-20 07:00:01 +02:00
It's not working. Probably related to actions/runner-images#7253. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
26 lines
533 B
YAML
26 lines
533 B
YAML
name: CI
|
|
|
|
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', '6.4' ]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
- uses: actions/cache@v3
|
|
id: cache-pip
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: pip
|
|
- name: Install hg
|
|
run:
|
|
pip install mercurial==${{ matrix.hg }}
|
|
- run: make test
|