aboutsummaryrefslogtreecommitdiff
path: root/src/x509-info/.github/workflows (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add some workflows for CI and dependabot configFranck Cuny2024-04-152-0/+76
|
* ci: switch from GitHub action to droneFranck Cuny2022-11-061-49/+0
| | | | | | | | | | | I'm running my own CI at ci.fcuny.net using drone for now. I've spare compute capacity at home, and it's way faster than the GHA runners. For now I'm losing the following: - dependabot: that's a GitHub only function, I'll need to figure out something - nix flake update: I'll need to figure out a way to update flakes on a regular basis, probably a custom script to take care of that
* ci: rewrite GitHub actions to use `nix develop|build`Franck Cuny2022-11-011-75/+36
| | | | | | | Instead of relying on GitHub actions to check/test/build the code, I can rely entirely on nix to do these steps. This has the added benefit that the workflow will be similar to my local environment and make it easy to test the worfklow before running it on GitHub.
* build(deps): bump actions/checkout from 2 to 3dependabot[bot]2022-10-211-5/+5
| | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* feat: get information about a given certificateFranck Cuny2022-10-211-0/+15
| | | | | | | | | | | | | | | | Read the domain name from the CLI, and get and print information about the certificate to STDOUT. The output looks like this: ``` > ./target/debug/x509-info badssl.com Subject: CN=*.badssl.com O= L= Issuer: CN=R3 O=Let's Encrypt L= DNS Names: *.badssl.com, badssl.com Validity Period Not before: 2022-08-12T07:57:46-07:00 Not After: 2022-11-10T06:57:45-08:00 ```
* build: fix the name of the workflowFranck Cuny2022-10-191-1/+1
|
* meta: initial commitFranck Cuny2022-10-191-0/+73
Create the initial scaffolding for a rust project, using `cargo` and a nix template.