Skip to content

Delete safe_env.cpp #13

Delete safe_env.cpp

Delete safe_env.cpp #13

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: g++
run: |
g++ --version && \
g++ main.cpp safe_env.cpp -I include -std=c++20 -O2 -Wall -Wextra -pedantic -Wshadow -Werror
static_analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: clang-tidy
run: |
clang-tidy --version && \
clang-tidy include/safe_env/safe_env.hpp main.cpp safe_env.cpp --checks="*,-llvmlibc-*,-modernize-use-trailing-return-type" --warnings-as-errors="*" -- -I include -std=c++20
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: doxygen
run: sudo apt-get install -y doxygen && doxygen --version && doxygen .doxygen