We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Whenever a new commit is pushed to main, we want to update the Fly machine to run the latest version. Here is a good example for inspiration:
main
https://github.com/filecoin-station/spark-evaluate/blob/7cb6cea026d16cdfbe4fecbb0d2fa018c543f0ed/.github/workflows/ci.yml#L74-L126
To prevent landing of pull requests that will break the service, we should implement at least a minimal CI workflow:
CI/CD steps to implement:
cargo build
cargo clippy
cargo fmt
npx standard
docker build
The text was updated successfully, but these errors were encountered:
Related:
Sorry, something went wrong.
No branches or pull requests
Whenever a new commit is pushed to
main
, we want to update the Fly machine to run the latest version. Here is a good example for inspiration:https://github.com/filecoin-station/spark-evaluate/blob/7cb6cea026d16cdfbe4fecbb0d2fa018c543f0ed/.github/workflows/ci.yml#L74-L126
To prevent landing of pull requests that will break the service, we should implement at least a minimal CI workflow:
CI/CD steps to implement:
cargo build
passescargo clippy
andcargo fmt
checks toonpx standard
to enforce consistent formatting of the JavaScript codedocker build
passesmain
branch to Fly.ioThe text was updated successfully, but these errors were encountered: