GeistHaus
log in · sign up

wschenk - Overview

github.com

wschenk has 82 repositories available. Follow their code on GitHub.

2 pages link to this URL
Using act to test github actions locally

1 brew install act Test it out 1 2 3 cd $(mktemp -d) git clone https://github.com/cplee/github-actions-demo cd github-actions-demo Then run act I chose the medium instance. It seemed to pass. Listing out the repos My first test is to print out all of my repos in the run. This isn't that exiting but it's a good way to test it out. 1 2 3 4 5 6 7 8 9 10 name: My workflow on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - run: gh repo list env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} Run it like

0 inbound links article en labnotes ActGithub
Living in mktemp and git and codespaces

Ok boomer, is your laptop backed up? Do you compulsively press C-s to make sure that you files are saved? No, because who needs to do that nonesense anymore. Kids today, don't even know what a file system is… This article is about thinking of your local computer as a cache for data that primary lives somewhere else. Or in the case of git, doesn't really live anywhere, and moves around at will. One thing that is nice about it is that you don't need to worry about backups, and you can easily move around from one machine to another.

0 inbound links article en articles MktempGitDockerTransient