Files
git-remote-hg/.github/workflows/main.yml
Felipe Contreras b4c3277f72 github: trigger actions on all branches
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
2023-03-06 09:42:51 -06:00

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