Skip to content

davegoopot/davegoopot.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Testing Changes Before Merging to Master

To ensure that the changes you make to the site are correct and do not introduce any issues, you can test the compiled Jekyll code locally before merging to the master branch. Follow the steps below to run the Jekyll build and tests locally.

Prerequisites

Make sure you have the following installed on your local machine:

  • Ruby (version 2.7 or later)
  • Bundler
  • Docker (optional, for running tests in a containerized environment)

Steps to Run Jekyll Build Locally

  1. Clone the repository to your local machine:

    git clone https://github.com/davegoopot/davegoopot.github.io.git
    cd davegoopot.github.io
  2. Install the required gems:

    bundle install
  3. Build the Jekyll site:

    bundle exec jekyll build
  4. Serve the site locally to preview the changes:

    bundle exec jekyll serve

    The site will be available at http://localhost:4000. Open this URL in your web browser to preview the changes.

Steps to Run Jekyll Tests Locally

  1. Ensure you have Docker installed on your local machine.

  2. Run the Jekyll tests using the jekyll/jekyll Docker image:

    docker run --rm -v "$PWD:/srv/jekyll" -it jekyll/jekyll jekyll doctor

    This command will run the Jekyll tests and output any issues found with the site.

Steps to Publish the Test Branch to GitHub Pages

  1. Ensure you have Docker installed on your local machine.

  2. Run the Jekyll build:

    bundle exec jekyll build
  3. Publish the test branch to the GitHub Pages site under the branch URL:

    git checkout -b test
    git add .
    git commit -m "Test branch"
    git push origin test

    The test branch will be published to the GitHub Pages site under the branch URL. You can manually check the resulting site before merging the changes to master.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published