julienne_github_ci_m.f90 Source File


Files dependent on this one

sourcefile~~julienne_github_ci_m.f90~~AfferentGraph sourcefile~julienne_github_ci_m.f90 julienne_github_ci_m.f90 sourcefile~julienne_github_ci_s.f90 julienne_github_ci_s.f90 sourcefile~julienne_github_ci_s.f90->sourcefile~julienne_github_ci_m.f90 sourcefile~julienne_m.f90 julienne_m.f90 sourcefile~julienne_m.f90->sourcefile~julienne_github_ci_m.f90 sourcefile~check-command-line-argument.f90 check-command-line-argument.f90 sourcefile~check-command-line-argument.f90->sourcefile~julienne_m.f90 sourcefile~get-flag-value.f90 get-flag-value.f90 sourcefile~get-flag-value.f90->sourcefile~julienne_m.f90 sourcefile~handle-missing-flag.f90 handle-missing-flag.f90 sourcefile~handle-missing-flag.f90->sourcefile~julienne_m.f90

Source Code

! Copyright (c) 2024, The Regents of the University of California and Sourcery Institute
! Terms of use are as specified in LICENSE.txt
module julienne_github_ci_m
  !! Detect whether a program is running in GitHub Continuous Integration (CI)
  implicit none
   
  interface

    logical module function GitHub_CI()
      !! The result is true if the environment variable named "CI" is set to the string "true"
    end function

  end interface

end module