Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-cesnet
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp-module-cesnet
Merge requests
!52
build: update workflow
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
build: update workflow
fix_build
into
master
Overview
1
Commits
1
Pipelines
0
Changes
1
Merged
Pavel Vyskočil
requested to merge
fix_build
into
master
3 years ago
Overview
1
Commits
1
Pipelines
0
Changes
1
Expand
add all required php extensions
update some steps
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6d63decd
1 commit,
2 years ago
1 file
+
6
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.github/workflows/build_and_check.yml
+
6
−
7
Options
@@ -11,25 +11,24 @@ on:
jobs
:
build
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
php-version
:
[
7.4
,
8.0
]
steps
:
-
uses
:
actions/checkout@v
2
-
uses
:
actions/checkout@v
3
-
name
:
Cache Composer dependencies
uses
:
actions/cache@v
2
uses
:
actions/cache@v
3
with
:
path
:
/tmp/composer-cache
key
:
${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
-
name
:
Install dependencies
uses
:
php-actions/composer@v
5
uses
:
php-actions/composer@v
6
with
:
php_version
:
${{ matrix.php-version }}
version
:
2
php_extensions
:
json
php_extensions
:
curl iconv intl json ldap
-
name
:
Run easy coding standard
run
:
vendor/bin/ecs check
release
:
@@ -38,11 +37,11 @@ jobs:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v
2
uses
:
actions/checkout@v
3
with
:
fetch-depth
:
0
-
name
:
Setup Node.js
uses
:
actions/setup-node@v
1
uses
:
actions/setup-node@v
3
with
:
node-version
:
14
-
name
:
Release
Loading