update the job ID

This commit is contained in:
Shlomi Fish 2025-02-09 07:50:51 +02:00
parent feb1f7cada
commit 1b6cdd6d29
3 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ jobs:
--pcre
- run: local_lib_shim() { eval "$(perl -Mlocal::lib=$HOME/perl_modules)";
} ; local_lib_shim ; rm -fr B
test-fc-solve:
test-fortune:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View File

@ -33,7 +33,7 @@ jobs:
--pcre
- run: local_lib_shim() { eval "$(perl -Mlocal::lib=$HOME/perl_modules)";
} ; local_lib_shim ; rm -fr B
test-fc-solve:
test-fortune:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View File

@ -9,7 +9,7 @@
"""
CI-testing/translate-travis.yml-to-github-actions.py :
This program translates fc-solve's .travis.yml to GitHub actions
This program translates fortune-mod's .travis.yml to GitHub actions
and ACT workflows ( https://github.com/nektos/act ).
While ostensibly FOSS, it most probably is not generic enough
@ -64,7 +64,7 @@ def generate(output_path, is_act):
with open("./.travis.yml", "rt") as infh:
data = yaml.safe_load(infh)
jobs = {}
for (job, pcre) in [('test-fc-solve', False), ('pcre2', True)]:
for (job, pcre) in [('test-fortune', False), ('pcre2', True)]:
steps = []
steps.append({
"uses": ("actions/checkout@v2"),